bytes字节和string转换

bytes字节通过decode解码为string格式
string通过encode编码为byte格式

msg = "我喜欢编程"
print(msg.encode()) #string编码为bytes字节  运行结果:b'\xe6\x88\x91\xe5\x96\x9c\xe6\xac\xa2\xe7\xbc\x96\xe7\xa8\x8b'
print(msg.encode().decode()) #bytes字节解码为string  运行结果:我喜欢编程

你可能感兴趣的:(bytes字节和string转换)