msg = "你好,世界" print(type(msg),msg) msg1= msg.encode(encoding="utf-8") #转换成bytes print(type(msg1),msg1) print(msg1.decode(encoding="utf-8")) #转换成str
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