Python3 - 完成脚本后保持程序运行

时间:2012-10-13 10:29:23

标签: python

标题基本上都说明了一切。 这是我的剧本:

    keepProgramRunning = True
a = int(input("Type a value for a: "))
b = int(input("Type a value for b: "))
print("Result when multiplying: ", a*b)
print("Result when dividing: ", a/b)
print("...", a-b)
print("...", a+b)

如果在没有cmd自动关闭的情况下输入a和b的值,我怎样才能看到结果。

2 个答案:

答案 0 :(得分:3)

最简单的方法是等待用户输入

最后添加:

input("Press enter to close")

或者,如果从命令行运行脚本,则脚本结束后窗口不会消失。

答案 1 :(得分:1)

等待另一个输入

keepProgramRunning = True
a = int(input("Type a value for a: "))
b = int(input("Type a value for b: "))
print("Result when multiplying: ", a*b)
print("Result when dividing: ", a/b)
print("...", a-b)
print("...", a+b)
input("Press [enter] to continue..")