【Python】SyntaxError: Missing parentheses in call to 'print'

现象

【Python】SyntaxError: Missing parentheses in call to 'print'_第1张图片

问题:
输入如下代码:

print “hello,world"

会出现SyntaxError: Missing parentheses in call to 'print'的提示。
原因
Python2支持格式print "hello world!"
Python3格式是print ("hello world!")
注意:
Python3同样不支持每行以分号结尾。但是Python2可以(根据个人习惯使用)。

你可能感兴趣的:(【Python】SyntaxError: Missing parentheses in call to 'print')