记一下,备忘。
Python 使用unicode,所以无论encode还是decode都是针对unicode来说的。
encode:把unicode转为其他编码(gbk、utf8、gb2312等)。
decode:把其他编码转为unicode码。
比如字符串a为gb2312,想转为utf8:
a.decode(gb2312).encode(utf8)
时间: 2024-11-08 09:59:47
记一下,备忘。
Python 使用unicode,所以无论encode还是decode都是针对unicode来说的。
encode:把unicode转为其他编码(gbk、utf8、gb2312等)。
decode:把其他编码转为unicode码。
比如字符串a为gb2312,想转为utf8:
a.decode(gb2312).encode(utf8)