- 字符串类型不同
- py3: str bytes
- py2: unicode str
- 默认解释器编码
- 输入输出
- int
- int long
- 除法
- range和xrang
- 模块和包
- 字典
- keys
- py2:列表
- py3:迭代器,可以循环但不可以索引
- values
- py2:列表
- py3:迭代器,可以循环但不可以索引
- items
- py2:列表
- py3:迭代器,可以循环但不可以索引
- keys
- map/filter
- py2:返回列表
- py3:返回迭代器,可以循环但不可以索引
原文地址:https://www.cnblogs.com/guogenyyy/p/11154533.html
时间: 2024-11-06 07:42:43