encode和decode关系
Posted haocao-niu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了encode和decode关系相关的知识,希望对你有一定的参考价值。
过程:
将其他编码的字符解码(decode)为unicode;
将unicode编码的字符编码(encode)为另一种编码。
eg:
str.decode(‘gb2312‘) -----将gb2312编码的字符串str转换为unicode编码
str.encode(‘GBK‘) -----将unicode编码的字符串str转换为GBK编码
以上是关于encode和decode关系的主要内容,如果未能解决你的问题,请参考以下文章