[转]python str与bytes之间的转换

Posted

tags:

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

原文:http://www.cnblogs.com/zqifa/p/python-7.html

# bytes object 
b = b"example"

# str object 
s = "example"

# str to bytes 
sb = bytes(s, encoding = "utf8")

# bytes to str 
bs = str(b, encoding = "utf8")

# an alternative method 
# str to bytes 
sb2 = str.encode(s)

# bytes to str 
bs2 = bytes.decode(b)

 

以上是关于[转]python str与bytes之间的转换的主要内容,如果未能解决你的问题,请参考以下文章

python基础——编码、bytes与str转换及格式化

python str与bytes之间的转换

python 中 str与bytes的转换

python3 byte,int,str转换

区分 bytes str 和 unicode

python3 str和bytes之间转换