我正在使用py2exe来制作可执行文件。
我想知道如何在按下按钮之前暂停程序..就像我们在C中使用system("pause");
当程序在Windows中自动终止时,我需要这个工具。
有没有什么比py2exe更好的做同样的工作?
答案 0 :(得分:6)
您可以在Python2中使用raw_input,或在Python 3中输入
raw_input("Press Enter to terminate.")
答案 1 :(得分:4)
处理Python 2和3的快速代码段:
# -*- coding: utf-8 -*-
import sys
python2 = sys.version_info[0] == 2
if python2:
raw_input("Press ENTER to continue.")
else:
input("Press ENTER to continue.")
答案 2 :(得分:-2)
导入os
然后在你的代码中
使用os.system( “暂停”)