encode,decode,str to bytes

Posted it-farmer123

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了encode,decode,str to bytes相关的知识,希望对你有一定的参考价值。

msg = "你好,世界"
print(type(msg),msg)
msg1= msg.encode(encoding="utf-8")  #转换成bytes
print(type(msg1),msg1)
print(msg1.decode(encoding="utf-8")) #转换成str

  

以上是关于encode,decode,str to bytes的主要内容,如果未能解决你的问题,请参考以下文章

python3 str.encode bytes.decode

python之encode和decode编码

encode 在C++中的用法

TypeError: a bytes-like object is required, not 'str'

python str与bytes编码解码

python的bytes和str的转换