SyntaxError: Missing parentheses in call to 'print

790 ワード

この文法はpython 3を使うことを意味しています.xはpython 2のみを実行する.xバージョンのpythonコード.完全なエラーコードは次のとおりです.
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(print "Added view permission for %s" % content_type.name)?

テスト文:
C:\Users\Administrator>python
Python 3.6.4 (v3.6.4:d48eceb, Dec 19 2017, 06:04:45) [MSC v.1900 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> print "hello"
  File "", line 1
    print "hello"
                ^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print("hello")?
>>>

転載先:https://blog.51cto.com/lmjshe/2066744