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

python中str和bytes相互转换

时间:2018-01-13 23:39:37      阅读:200      评论:0      收藏:0      [点我收藏+]

标签:log   enc   utf8   example   encode   method   color   python   ati   

 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相互转换

标签:log   enc   utf8   example   encode   method   color   python   ati   

原文地址:https://www.cnblogs.com/ceshixuexi/p/8280711.html

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