Python学习5_解决python 提示 SyntaxError: Missing parentheses in call to 'print'

时间:2022-04-12 18:23:52

刚刚学习python,练习他的输出,发现输出一个常量时报错了,如下:

Python学习5_解决python 提示 SyntaxError: Missing parentheses in call to 'print'

发现是因为python2.X版本与python3.X版本输出方式不同造成的在python3.X的,输入内容时都要带上括号python(),而在2.X中直接输出就没有问题

Python学习5_解决python 提示 SyntaxError: Missing parentheses in call to 'print'

 第二个地方,在IDE中运行给予提示,如

Python学习5_解决python 提示 SyntaxError: Missing parentheses in call to 'print'

Python学习5_解决python 提示 SyntaxError: Missing parentheses in call to 'print'

原文来自:http://www.cnblogs.com/chongyou/p/5843309.html