1.使用print输出时报错:
Missing parentheses in call to ‘print‘. ----在调用“print”时缺失了括号。
输出代码是:
1 print ‘hello world‘
因为我用的是Python3.x,Python3.x中print后面是要加括号输出,正确的代码应该是:
1 print (‘hello world‘)
Posted wentaokyle
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python学习08相关的知识,希望对你有一定的参考价值。
1.使用print输出时报错:
Missing parentheses in call to ‘print‘. ----在调用“print”时缺失了括号。
输出代码是:
1 print ‘hello world‘
因为我用的是Python3.x,Python3.x中print后面是要加括号输出,正确的代码应该是:
1 print (‘hello world‘)
以上是关于Python学习08的主要内容,如果未能解决你的问题,请参考以下文章