Python 2.7.x 和 3.x 版本的重要区别小结(6)
Python 2 print 'Python', python_version() print range(3)print type(range(3)) Python 2.7.6[0, 1, 2]type 'list' Python 3 print('Python', python_version())print(range(3))print(type(range(3)))print(list(r
Python 2
print 'Python', python_version() print range(3) print type(range(3))
Python 2.7.6 [0, 1, 2] <type 'list'>
Python 3
print('Python', python_version()) print(range(3)) print(type(range(3))) print(list(range(3)))
Python 3.4.1 range(0, 3) <class 'range'> [0, 1, 2]
下面列出了Python 3中其他不再返回列表的常用函数和方法:
- zip()
- map()
- filter()
- 字典的.key()方法
- 字典的.value()方法
- 字典的.item()方法
更多关于Python 2和Python 3的文章
[回到目录]
下面列出了其他一些可以进一步了解Python 2和Python 3的优秀文章,
//迁移到 Python 3
- Should I use Python 2 or Python 3 for my development activity?
- What's New In Python 3.0
- Porting to Python 3
- Porting Python 2 Code to Python 3
- How keep Python 3 moving forward
// 对Python 3的褒与贬
收藏文章
精彩图集
精彩文章