【发布时间】:2019-05-08 05:45:31
【问题描述】:
我正在尝试在 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:
【问题讨论】:
-
你应该添加编码参数
标签: pandas csv python-import