Python str与bytes之间的转换

# 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)

 

posted on 2019-03-23 10:45  疯狂的小萝卜头  阅读(137)  评论(0编辑  收藏  举报