【Python】 Missing parentheses in call to 'print'

DracoTianlong發表於2015-09-20

問題

 print "www.baidu.com"

出現

SyntaxError: Missing parentheses in call to 'print'

原因:Mac安裝倆個python版本,2和3,python2系列可以支援 print “xxxx” ,python系列需要使用print("xxx")

相關文章