博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
python2x与python3x的区别
阅读量:5044 次
发布时间:2019-06-12

本文共 491 字,大约阅读时间需要 1 分钟。

python2x与Python3x的区别

 一.1.Python2x:  a.源码不规范,源码混乱,重复代码冗余(重复多)

     python3x:  b.重整源码,源码规范,优美,清新,简单

  2.Python2x:  a.默认编码方式是 ASCII(对待中文需要加)

     python3x:  b.默认编码方式是utf-8

  3.Python2x:  a.range是list类型   xrange才是可迭代对象

        python3x:  b.range可以视为list可迭代对象(不是list类型)

  4.Python2x:  a.客户交互raw_input 而Python2x中的 input() 相当于eval()

        python3x:  b.客户交互input

  5.Python2x:  a.print "内容"   或者   print(“内容”) 

        python3x:  b.print(“内容”)#如果是变量,不用带引号

转载于:https://www.cnblogs.com/pupilheart/p/8954459.html

你可能感兴趣的文章