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

python 中 str与bytes的转换

时间:2018-10-25 18:00:17      阅读:191      评论:0      收藏:0      [点我收藏+]

标签:utf8   ignore   str1   抛出异常   pytho   str   ict   转换   byte   

# bytes转字符串方式一
b=b‘\xe9\x80\x86\xe7\x81\xab‘
string=str(b,‘utf-8‘)
print(string)

# bytes转字符串方式二
b=b‘\xe9\x80\x86\xe7\x81\xab‘
string=b.decode() # 第一参数默认utf8,第二参数默认strict
print(string)

# bytes转字符串方式三
b=b‘\xe9\x80\x86\xe7\x81haha\xab‘
string=b.decode(‘utf-8‘,‘ignore‘) # 忽略非法字符,用strict会抛出异常
print(string)

# bytes转字符串方式四
b=b‘\xe9\x80\x86\xe7\x81haha\xab‘
string=b.decode(‘utf-8‘,‘replace‘) # 用?取代非法字符
print(string)

# 字符串转bytes方式一
str1=‘逆火‘
b=bytes(str1, encoding=‘utf-8‘)
print(b)

# 字符串转bytes方式二
b=str1.encode(‘utf-8‘)
print(b)

python 中 str与bytes的转换

标签:utf8   ignore   str1   抛出异常   pytho   str   ict   转换   byte   

原文地址:https://www.cnblogs.com/yingchen/p/9851270.html

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