标签:
1.在print方面,新版本需要加括号,调用函数时也是如此,比如:
1 import string 2 s=‘the quick brown fox jumped to the lazy dog‘ 3 print (s)#原版本为 print s 4 print (string.capwords(s))#原版本为 print string.capwords(s)
显示结果
新版本的Python问题
原文地址:http://www.cnblogs.com/table/p/4827502.html