ile并进入Jupiter笔记本,我收到错误UTF-8

时间:2020-10-21 15:42:17

标签: python pandas numpy utf-8 jupyter-notebook

enter image description here

NameError:未定义名称“ pd”

1 个答案:

答案 0 :(得分:0)

UTF-8是默认编码,但是无法解码此数据集中的某些位置。 试试这个:

dataframe = pd.read_csv('File_name', encoding='latin')

此处的相关信息:http://python-notes.curiousefficiency.org/en/latest/python3/text_file_processing.html