FileNotFoundError,pandas.read_csv

时间:2019-07-01 09:46:28

标签: python pandas

我需要使用python上的数据集。
我正在使用pandas.read_csv方法,但是当我运行该方法时,会出现以下错误:

  

FileNotFoundError: [Errno 2] File b'student-mat.csv' does not exist: b'student-mat.csv'

文件和python脚本位于同一目录中,我也未选中隐藏已知文件类型的扩展名,我也尝试使用整个路径。
我在Windows,python 3.7.3,PyCharm IDE上。

import pandas as pd

data = pd.read_csv("student-mat.csv")
print(data)

0 个答案:

没有答案