码迷,mamicode.com
首页 > 编程语言 > 详细

python str byte 互转

时间:2019-10-17 13:46:39      阅读:73      评论:0      收藏:0      [点我收藏+]

标签:color   coding   native   pre   nat   alter   odi   div   amp   

 

 

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

 

python str byte 互转

标签:color   coding   native   pre   nat   alter   odi   div   amp   

原文地址:https://www.cnblogs.com/lshan/p/11691309.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!