Fork me on GitHub

python str与bytes之间的转换

 # bytes object  
 b = b"example"  
  
 # str object  
 s = "example"  
  
 # str to bytes  
 bytes(s, encoding = "utf8")  
  
 # bytes to str  
 str(b, encoding = "utf-8")  
  
 # an alternative method  
 # str to bytes  
 str.encode(s)  
  
 # bytes to str  
 bytes.decode(b)  
posted @ 2018-01-16 14:41  郭耀华  阅读(374)  评论(0编辑  收藏  举报