SyntaxError: Missing parentheses in call to 'print

這個語法報錯,意思是試圖用python3.x來運行一個只用於python2.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 "<stdin>", line 1
    print "hello"
                ^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print("hello")?
>>>
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章