py2与py3的编码问题
一.python2
1.一共的两种类型
名称:存储类型
str:bytes(以bytes类型存储)
Unicode:Unicode
二.Python3
1.两种类型
- 名称:存储类型
str:Unicode
bytes:bytes
三.经过Unicode进行encode()或decode()都是以bytes的方式存储。
一.python2
1.一共的两种类型
名称:存储类型
str:bytes(以bytes类型存储)
Unicode:Unicode
二.Python3
1.两种类型
str:Unicode
bytes:bytes
三.经过Unicode进行encode()或decode()都是以bytes的方式存储。