pythonw.exe还是python.exe?
长话短说:pythonw.exe
什么都不做,python.exe
什么也不接受(我应该使用哪一个?)
test.py:print "a"
CMD窗口:
C:\path>pythonw.exe test.py<BLANK LINE>
C:\path>
C:\path>python.exe test.py
File "C:\path\test.py", line 7
print "a"
^
SyntaxError: invalid syntax
C:\path>
请告诉我我在做错什么。
回答:
如果你不希望在运行程序时弹出终端窗口,请使用pythonw.exe
;
否则,使用python.exe
关于语法错误:print
现在是3.x中的函数,请
改用:
print("a")
以上是 pythonw.exe还是python.exe? 的全部内容, 来源链接: utcz.com/qa/430044.html