SyntaxError: Missing parentheses in call to 'print'. Did you mean print("hello,world!")Python3中取消了之前Python 2中的语法,二者在打印输出的语法上有所差异,因此在Python 3下面使用以前的语法格式就会报错,错误信息已经提示你须要加上括号,字符串能够用单引号或双引号括起来。ide