问题
print "www.baidu.com" Python2
print ("www.baidu.com") Python3
出现
SyntaxError: Missing parentheses in call to 'print'
原因:Mac安装俩个python版本,2和3,python2系列可以支持 print “xxxx” ,python系列需要使用print("xxx")
本文共 243 字,大约阅读时间需要 1 分钟。
问题
print "www.baidu.com" Python2
print ("www.baidu.com") Python3
出现
SyntaxError: Missing parentheses in call to 'print'
原因:Mac安装俩个python版本,2和3,python2系列可以支持 print “xxxx” ,python系列需要使用print("xxx")
转载于:https://www.cnblogs.com/kaid/p/7991728.html