Python读取txt文件报错:UnicodeDecodeError: 'utf-8' codec can't decode byte 0xc8 in position 0(示

Posted 苦逼运维

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python读取txt文件报错:UnicodeDecodeError: 'utf-8' codec can't decode byte 0xc8 in position 0(示相关的知识,希望对你有一定的参考价值。

  Python使用open读取txt中文内容的文件时,有可能会报错,报错内容如下:UnicodeDecodeError: \'utf-8\' codec can\'t decode byte 0xc8 in position 0。

  这里举一个例子:txt=open("threekingdoms.txt","r",encoding="utf-8").read(),在运行时就会报错。

  要处理这个问题有两个办法,如下:

    第一个办法,将编码方式由utf-8改为gb18030,即txt=open("threekingdoms.txt","r",encoding="gb18030").read()。

    第二个办法,将原来的txt文件另存为,在保存时将编码由ANSI改为UTF-8。

 

 

参考:https://blog.csdn.net/xxceciline/article/details/80405129

以上是关于Python读取txt文件报错:UnicodeDecodeError: 'utf-8' codec can't decode byte 0xc8 in position 0(示的主要内容,如果未能解决你的问题,请参考以下文章

Flex读取txt文件里的内容报错

Flex读取txt文件里的内容报错

Python读取中文txt文件错误:UnicodeEncodeError: 'gbk' codec can't encode character

Python读取内容UnicodeDecodeError错误

Python——文件读取与写入

Python档案袋(文件系列操作 )