python中str和bytes相互转换

Posted 来呀来呀

tags:

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

 1 # bytes object  
 2  b = b"example"  
 3   
 4  # str object  
 5  s = "example"  
 6   
 7  # str to bytes  
 8  bytes(s, encoding = "utf8")  
 9   
10  # bytes to str  
11  str(b, encoding = "utf-8")  
12   
13  # an alternative method  
14  # str to bytes  
15  str.encode(s)  
16   
17  # bytes to str  
18  bytes.decode(b)  

 

以上是关于python中str和bytes相互转换的主要内容,如果未能解决你的问题,请参考以下文章

golang []byte 和 string相互转换

python3.x中str,bytes类型相关转化

Python str / bytes / unicode 区别详解

python 编码问题

python3.x中str,bytes类型相关转化

C# string类型和byte[]类型相互转换