欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

python中encode和decode的总结

程序员文章站 2022-07-14 19:21:04
...

decode的作用是将其他编码的字符串转换成unicode编码
encode的作用是将unicode编码转换成其他编码的字符串


1.python3和python2默认的编码方式是不一样的,如下图
python中encode和decode的总结
2.unicode 转换为其它编码(GBK, GB2312等)

# -*- coding=gb2312 -*-
a = u"这里是中国,犯我中华者,虽远必诛"
print a
a_gb2312 = a.encode('gb2312')
print a_gb2312

python中encode和decode的总结

3.其它编码(utf-8,GBK)转换为unicode

# -*- coding=gb2312 -*-
a = u"这里是中国,犯我中华者,虽远必诛"
a_gb2312 = a.encode('gb2312')
print a_gb2312

a_unicode = a_gb2312.decode('gb2312')  # gb2312->unicode
assert (a_unicode == a)
a_utf_8 = a_unicode.encode('utf-8')  # unicode->utf8
print a_utf_8

python中encode和decode的总结
4.非unicode编码之间的转换

# -*- coding=gb2312 -*-
# 将gb2312->utf-8
a = u"这里是中国,犯我中华者,虽远必诛"
a_gb2312 = a.encode('gb2312')
print a_gb2312

a_unicode = a_gb2312.decode('gb2312')#gb2312->unicode
assert (a_unicode == a)
a_utf_8 = a_unicode.encode('utf-8')# unicode->utf8
print a_utf_8

python中encode和decode的总结
参考文章一
参考文章二

相关标签: python