现象:
问题:
输入如下代码:
print “hello,world"
会出现SyntaxError: Missing parentheses in call to 'print'的提示。
原因:
Python2支持格式print "hello world!"
Python3格式是print ("hello world!")
注意:
Python3同样不支持每行以分号结尾。但是Python2可以(根据个人习惯使用)。
现象:
print “hello,world"
会出现SyntaxError: Missing parentheses in call to 'print'的提示。
原因:
Python2支持格式print "hello world!"
Python3格式是print ("hello world!")
注意:
Python3同样不支持每行以分号结尾。但是Python2可以(根据个人习惯使用)。
本文标题:【Python】SyntaxError: Missing par
本文链接:https://www.haomeiwen.com/subject/acjipttx.html
网友评论