1. 程式人生 > >Missing parentheses in call to 'print'

Missing parentheses in call to 'print'

這個訊息的意思是你正在試圖用python3.x來執行一個只用於python2.x版本的python指令碼。

print"Hello world"

上面的語法在python3中是錯誤的。在python3中,你需要將helloworld加括號,正確的寫法如下

print("Hello world")

連結:https://www.jianshu.com/p/7856a7e53190
來源:簡書