1.decode和encode
s.decode('utf-8').encode('utf-8')
decode():是解码
encode()是编码
isinstance(s,unicode):判断s是否是unicode编码,如果是就返回true,否则返回false
2.规则:
3.python 内存字符串唯一 unicode
4.python打开图片:
5.python2与python3字符类型,编码转换区别: