在Python中,使用open方法读取文本文档时,如果文档中有中文,那么文档应该是以UTF-8格式保存的,
所以代码应该这样写:
currentFile=open(fileName,'r',encoding='utf-8')
在Python中,使用open方法读取文本文档时,如果文档中有中文,那么文档应该是以UTF-8格式保存的,
所以代码应该这样写:
currentFile=open(fileName,'r',encoding='utf-8')
本文标题:python UnicodeDecodeError: 'gbk'
本文链接:https://www.haomeiwen.com/subject/tgxmittx.html
网友评论