小编典典

pythonw.exe 还是 python.exe?

all

长话短说:pythonw.exe什么都不做,什么都不python.exe接受(我应该使用哪一个?)

测试.py:

print "a"

命令窗口:

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>

请告诉我我做错了什么。


阅读 114

收藏
2022-07-18

共1个答案

小编典典

如果您不想在运行程序时弹出终端窗口,请使用pythonw.exe;
否则,使用python.exe

关于语法错误:print 现在是 3.x 中的函数
所以改用:

print("a")
2022-07-18