Python3中内置类型bytes和str用法及byte和string之间各种编码转换 | 文件数据逐行读取,判断编码出错的地方
【摘要】
原文链接
f = open("esterone.tst.mdtm","rb")#二进制格式读文件
while True:
line = f.readline()
if not line...
f = open("esterone.tst.mdtm","rb")#二进制格式读文件
while True:
line = f.readline()
if not line:
break
else:
try:
#print(line.decode('utf8'))
line.decode('utf8')
except:
print("=====")
print(str(line))
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
具体错误示例链接:
UnicodeDecodeError: ‘utf-8’ codec can’t decode byte 0xc4 in position 5686:
文章来源: positive.blog.csdn.net,作者:墨理学AI,版权归原作者所有,如需转载,请联系作者。
原文链接:positive.blog.csdn.net/article/details/88025011
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)