SyntaxError: Missing parentheses in call to 'print'. Did you mean print("hello,world!")Python3中取消了之前Python 2中的語法,二者在打印輸出的語法上有所差異,因此在Python 3下面使用以前的語法格式就會報錯,錯誤信息已經提示你須要加上括號,字符串能夠用單引號或雙引號括起來。ide