摘要: 简单介绍一下python2.x和3.5的区别 print 在python3.5中print 变为print() Old: print "The answer is" , 2 *2 New: print( "The answer is" , 2 *2 ) 如果想要不换行,之前的 2.x 版本可以这样 阅读全文
posted @ 2016-01-02 17:34 ko_ka24 阅读(1347) 评论(0) 推荐(2)