我是靠谱客的博主 野性水壶,最近开发中收集的这篇文章主要介绍python读取文件编码错误.decode('GB2312', errors='ignore')解决,觉得挺不错的,现在分享给大家,希望可以做个参考。
概述
with open(file=file_, mode='rb') as read_file: # print(read_file.read()) # article = '' # for line in read_file: # line = line.decode('utf-8').rstrip('n') # 删除 string 字符串末尾的指定字符(默认为空格) # if line: # article = article.join(str(line)) # data[file_dir + '/' + file] = ''.join(article) article = read_file.read() data[file_dir + '/' + file] = article.decode('GB2312', errors='ignore') # print(data)
最后
以上就是野性水壶为你收集整理的python读取文件编码错误.decode('GB2312', errors='ignore')解决的全部内容,希望文章能够帮你解决python读取文件编码错误.decode('GB2312', errors='ignore')解决所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复