标签:
在python 2.7里 print是表达式,使用双引号打印字符串。
print “Hello,world”
而在python 3.4里 print是函数,使用括号打印字符串。
print("Hello,world")
print
原文地址:http://www.cnblogs.com/stephen2016/p/5942733.html