如果运行python代码是python GUI编辑器,是否可以在命令提示符下显示结果?
我的意思是,我有一个程序
derapproximator-0.52-py3.4.egg
运行此代码后,我就可以在Python Shell窗口中获得答案
def sum(a,b):
result = a+b
print "The sum = %d." %result
sum(2,3)
我的问题是,我是否可以在Windows命令提示符下获取结果,而不是在Python Shell窗口中获取结果。
提前致谢!
答案 0 :(得分:0)
您可以通过键入
在命令提示符下运行python程序Path/To/python.exe Path/To/python_script.py
将输出答案