嗨,我是 Python 新手,目前已复制以下脚本:
# filename is printer.py
import sys
for arg in sys.argv:
print arg # the zeroth element is the module name
raw_input("press any key") # a trick to keep the python console open
我正在尝试获取参数后跟模块名称。但是运行此代码会给我以下错误:
U:\printer.py
File "U:\printer.py", line 6
print arg # zeroth element is the module name
^
SyntaxError: Invalid syntax
有谁知道这里可能出了什么问题?我正在使用 Python 3.2