个人博客 地址:http://www.wenhaofan.com/article/20180618180327
>>> print "hello" SyntaxError: Missing parentheses in call to 'print'
在环境搭建章节中的路径下载了最新的Python安装包并完成安装后,在cmd窗口执行菜鸟教程第一个 Python 程序中的代码:print "Hello, Python!";提示“>>> print "hello" SyntaxError: Missing parentheses in call to 'print'” 。
原因为该教程实例基于python2.7版本,但是python官网最新的版本已经为3.x。而在python3.x中已经取消了print语句,加入了print()函数来执行输出。
所以在3.x版本中打印Hello,Python应该由print “Hello,Python”; 修改为 print (“Hello,Python”);