在python 2.7里 print是表达式,使用双引号打印字符串。
print “Hello,world”
而在python 3.4里 print是函数,使用括号打印字符串。
print("Hello,world")
在python 2.7里 print是表达式,使用双引号打印字符串。
print “Hello,world”
而在python 3.4里 print是函数,使用括号打印字符串。
print("Hello,world")
转载于:https://www.cnblogs.com/stephen2016/p/5942733.html