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'
中文
原文地址:https://www.cnblogs.com/ludundun/p/11509298.html
时间: 2024-10-08 08:14:39