添加链接
link管理
链接快照平台
  • 输入网页链接,自动生成快照
  • 标签化管理网页链接
Traceback (most recent call last):
  File "你的Python文件路径***.py", line 18(代码所在位置), in <module>
    next(reader)  # Skip the header
  File "C:\Python\Python39\lib\codecs.py", line 322, in decode
    (result, consumed) = self._buffer_decode(data, self.errors, final)
UnicodeDecodeError: 'utf-8' codec can't decode byte 0xb9 in position 0: invalid start byte

UnicodeDecodeError: ‘utf-8’ codec can’t decode byte 0xb9 in position 0: invalid start byte 百度直接翻译后意思是:UnicodeDecodeError:“utf-8”编解码器无法解码位置0中的字节0xb9:无效的起始字节。

导致这个错误出现的原因就是你 打开的文件出现的字节“utf-8”编解码器无法解码,所以出现了这个错误 ,通常是因为我们打开文件的时候指定了utf-8编码或者是默认的编码是utf-8,但是打开的文件不是utf-8编码的,所以就会报错了。

对打开文件指定对应的编码格式:

在国内的话,一般就是GBK比较多了,Windows默认是gbk,所以打开一些文件会这样

with open(you_file_path, 'r', encoding='gbk') as f:
    f_content = f.read()

忽略错误字符

如果你确认文件对应的编码没错,又出现了类似的错误,则可以在打开文件的时候使用errors=’ignore’参数,来忽略包含无效编码的字符。尝试避免这个错误

with open(you_file_path, 'r', encoding='utf-8', errors='ignore') as f:
    f_content = f.read()

如果你的文件可能包含BOM,那么可以使用utf-8-sig编码打开文件,如果没有则使用utf-8就足够了。

比较详细的解释请你看:在Python中打开文件使用utf-8-sig和utf-8的区别

Python requests 异常InsecureRequestWarning: Unverified HTTPS request is being made to host '***domain'. Adding certificate verification is strongly advised. See...解决

0238

联系站长

热门文章

  • Python爬虫报错:(Caused by SSLError(SSLEOFError(8, ‘EOF occurred in violation of protocol (_ssl.c:1129)’)))解决

    Python requests 异常InsecureRequestWarning: Unverified HTTPS request is being made to host ‘***domain’. Adding certificate verification is strongly advised. See…解决

最新评论

PREVNEXT