我正在尝试运行这个python脚本:
但由于某种原因,它包含一堆非法字符并出现此错误:
C:\tools\inspect>python largestFiles.py
File "largestFiles.py", line 28
print "Finding objects larger than {}kB\u2026".format(args.filesExceeding)
^
SyntaxError: invalid syntax
如果我删除那些非法字符,我仍然会得到:
C:\tools\inspect>python largestFiles.py
File "largestFiles.py", line 28
print "Finding objects larger than {}".format(args.filesExceeding)
^
SyntaxError: invalid syntax
有什么想法吗?
我使用python 3.4在Windows 8上运行它
答案 0 :(得分:0)
由于print
是python 3中的函数,您需要将字符串放在括号中。 https://docs.python.org/3.0/whatsnew/3.0.html#print-is-a-function
>>> print ("Finding objects larger than kB\u2026")
Finding objects larger than kB…