1. 源码区别
python2x :源码重复,不规范。
python3x :整合源码,更清晰简单优美。
2. 输出中文
python2x :默认的编码是ascii(英文和数字)
python3x :默认的编码是UTF
方法一:
在python2x中, 所以在头一行加
# -*- encoding:uft8 -*-
方法二:
所以在头二行加
#!/usr/bin/env python
# -*- encoding:uft8 -*-
3. 数字类型
pyhton2x : log int
print ‘abc’ print('abc')
python3x : 没有
print('abc')
4.
pyhton2x : raw_input()
input(只能输入)
pyhton3x :(没有要求)