无法运行python脚本

时间:2015-04-14 12:55:21

标签: python encoding

我正在尝试运行这个python脚本:

https://gist.githubusercontent.com/nk9/b150542ef72abc7974cb/raw/4a1e249976c6c330116fc068fb7001e3443c5b8d/largestFiles.py

但由于某种原因,它包含一堆非法字符并出现此错误:

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上运行它

1 个答案:

答案 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…