首页 > 解决方案 > 当我尝试在 python 中导入时,.csv 文件返回“unicode 错误”

问题描述

我正在尝试在 Jupyter 笔记本上使用 pandas 导入 .csv 数据集文件。我不断收到相同的“unicode decode error”消息

我已经尝试过使用和不(r'file name')使用反斜杠并加倍使用反斜杠,以及使用正斜杠

这是我的代码

import pandas as pd
df = pd.read_csv(r'C:\users\justanotheregg\Downloads\medals.csv')

这是我收到的一部分

UnicodeDecodeError                        Traceback (most recent call last)
pandas/_libs/parsers.pyx in pandas._libs.parsers.TextReader._convert_tokens()

pandas/_libs/parsers.pyx in pandas._libs.parsers.TextReader._convert_with_dtype()

pandas/_libs/parsers.pyx in pandas._libs.parsers.TextReader._string_convert()

pandas/_libs/parsers.pyx in pandas._libs.parsers._string_box_utf8()

UnicodeDecodeError: 'utf-8' codec can't decode byte 0x92 in position 12: invalid start byte

During handling of the above exception, another exception occurred:

标签: pandascsvpython-import

解决方案



推荐阅读