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

python打开文件查询字符串时报UnicodeDecodeError: 'gbk' codec can't decode byte 0xaa in position 19: illegal multibyte sequence错误

时间:2017-07-14 17:28:34      阅读:1087      评论:0      收藏:0      [点我收藏+]

标签:odi   nes   nbsp   ror   lin   bsp   sequence   erro   log   

 

当这样打开时报错了

lines = open(path).readlines()
open(path).close()
for line in lines:
idx1 = line.find(‘检测到的 SN 为:‘)
idx1 += len(‘检测到的 SN 为:‘)
idx2 = line.find(‘ 或许与您申请的SN不符,请联系技术提供方‘,idx1)
responsetimestr = line[idx1:idx2]
rts = responsetimestr
 

UnicodeDecodeError: ‘gbk‘ codec can‘t decode byte 0xaa in position 19: illegal multibyte sequence

 

改为以下即可

lines = open(path,mode=r,encoding=UTF-8).readlines()

 

python打开文件查询字符串时报UnicodeDecodeError: 'gbk' codec can't decode byte 0xaa in position 19: illegal multibyte sequence错误

标签:odi   nes   nbsp   ror   lin   bsp   sequence   erro   log   

原文地址:http://www.cnblogs.com/zdfbk/p/7171411.html

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