python之encode和decode编码
Posted ludundun
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python之encode和decode编码相关的知识,希望对你有一定的参考价值。
u = '中文'
str3 = u.encode('utf-8')
# 以utf-8编码对u进行编码,获得bytes类型对象
print(str3)
u2 = str3.decode('utf-8')
# 以utf-8编码对str3进行解码,获得str类型对象
print(u2)
#打印结果如下:
b'\xe4\xb8\xad\xe6\x96\x87'
中文
以上是关于python之encode和decode编码的主要内容,如果未能解决你的问题,请参考以下文章