python UnicodeDecodeError: 'gbk'

作者: Lemon雷 | 来源:发表于2017-02-07 15:14 被阅读0次

    在Python中,使用open方法读取文本文档时,如果文档中有中文,那么文档应该是以UTF-8格式保存的,

    所以代码应该这样写:

    currentFile=open(fileName,'r',encoding='utf-8')

    相关文章

      网友评论

        本文标题:python UnicodeDecodeError: 'gbk'

        本文链接:https://www.haomeiwen.com/subject/tgxmittx.html