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

解决Python读取文件时出现UnicodeDecodeError: 'gbk' codec can't decode byte...

时间:2016-07-23 23:06:05      阅读:783      评论:0      收藏:0      [点我收藏+]

标签:

用Python在读取某个html文件时会遇到下面问题:

技术分享

出问题的代码:

1 if __name__ == __main__:
2     fileHandler = open(../report.html, mode=r)
3 
4     report_lines = fileHandler.readlines()
5     for line in report_lines:
6         print(line.rstrip())

修改方式是在open方法指定参数encoding=‘UTF-8‘:

if __name__ == __main__:
    fileHandler = open(../report.html, mode=r, encoding=UTF-8)

    report_lines = fileHandler.readlines()
    for line in report_lines:
        print(line.rstrip())

 

解决Python读取文件时出现UnicodeDecodeError: 'gbk' codec can't decode byte...

标签:

原文地址:http://www.cnblogs.com/arctique/p/5699620.html

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