1

我收到以下错误:

  File "foo.py", line 6
    print "This implementation requires the numpy module."
                                                         ^
SyntaxError: invalid syntax

在此 Python 代码中:

#!/usr/bin/python

try:
    import numpy
except:
    print "This implementation requires the numpy module."
    exit(0)

###############################################################################

if __name__ == "__main__":
    R = [
         [1,2,3],
         [4,5,6]
        ]

怎么了?

编辑:我使用 Python 3.3

4

1 回答 1

6

这应该是:

print("....")

从 python 3 开始,print是一个函数,而不是一个特殊的 case 语句。

于 2013-03-16T12:12:31.963 回答