这本书以版本2为模板,我的MAC装了3,一些东西是不一样的,记录在这里(陆续)
(1) raw_input 全被 input 代替了
(2) print 语句打印字符串
2版中可以用 print "hello!" 即可
3版中必须用括号把字符串括起来,比如 print ("hello!")
(3) 字符串和数字连接
2版中用
years = 12
print " he is " + years + " years olds!"
3版需要指定类型
years = 12
print (" he is " + str(years) + " years olds!")
(4) cmp函数没有了
原创文章,转载请注明: 转载自混沌
本文链接地址: 近期学习PYTHON第二版,这里放一些心得吧