如何修复“UnicodeDecodeError: 'utf-8' codec can't decode byte 0xca”错误?

时间:2021-07-14 08:21:19

标签: python excel csv export-to-csv

我正在尝试通过我的程序运行一个包含大约 800 个单元格的 Excel 文件。该程序适用于大约 15 个单元格的文件。我得到的错误是

NameError: name 'ABC' is not defined

我的代码如下:

Traceback (most recent call last):
  File "/Users/first_lastname/Documents/CSVScraping.py", line 16, in <module>
    header = next(reader) #converts each row to a list
  File "/Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/codecs.py", line 322, in decode
    (result, consumed) = self._buffer_decode(data, self.errors, final)
UnicodeDecodeError: 'utf-8' codec can't decode byte 0xca in position 5214: invalid continuation byte

任何有关如何解决此问题的建议将不胜感激!!!!

1 个答案:

答案 0 :(得分:0)

发现我所要做的就是在“with”函数参数中的 r 之后放入“encoding = latin-1”