Python2 和 Python3区别

Posted guogenyyy

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python2 和 Python3区别相关的知识,希望对你有一定的参考价值。

  • 字符串类型不同

    • py3: str bytes

    • py2: unicode str

  • 默认解释器编码

  • 输入输出

  • int

    • int long

    • 除法

  • range和xrang

  • 模块和包

  • 字典

    • keys

      • py2:列表

      • py3:迭代器,可以循环但不可以索引

    • values

      • py2:列表

      • py3:迭代器,可以循环但不可以索引

    • items

      • py2:列表

      • py3:迭代器,可以循环但不可以索引

  • map/filter

    • py2:返回列表

    • py3:返回迭代器,可以循环但不可以索引

以上是关于Python2 和 Python3区别的主要内容,如果未能解决你的问题,请参考以下文章

python2和python3的输入和输出区别

Python2和Python3的区别

python2和python3的区别

Python2和Python3两者区别

Python3 和 Python2 区别

Python3 和 Python2 区别