智一面的面试题提供python的测试题
http://www.gtalent.cn/exam/interview?token=f098f775ffa0106d0451f7fd97357f23

1、Python3 使用 print 必须要以小括号包裹打印内容,比如 print('hi') Python2 既可以使用带小括号的方式,也可以使用一个空格来分隔打 印内容,比 如 print 'hi' 
 
2、python2 range(1,10)返回列表,python3 中返回迭代器,节约内 存
 
3、python2 中使用 ascii 编码,python 中使用 utf-8 编码 
 
4、python2 中 unicode 表示字符串序列,str 表示字节序列 python3 中 str 表示字符串序列,byte 表示字节序列 
 
5、python2 中为正常显示中文,引入 coding 声明,python3 中不需 要
 
6、python2 中是 raw_input()函数,python3 中是 input()函数 
————————————————
我们的python技术交流群:941108876
智一面的面试题提供python的测试题
http://www.gtalent.cn/exam/interview?token=f098f775ffa0106d0451f7fd97357f23