Kaggle 笔记本无法读取数据集

Kaggle notebook is not able to read the dataset

我试图在 kaggle 平台上读取 CSV 文件,但出现以下错误:

FileNotFoundError: [Errno 2] File b'../input/Salaries.csv' does not exist: b'../input/Salaries.csv'

这是我的代码:

import pandas as pd
sal = pd.read_csv('../input/Salaries.csv')

我可以在笔记本右侧看到输入window,路径和文件名与代码匹配。

有人可以帮帮我吗?

解决方法:-

import os
print(os.listdir("../input"))

它会向您显示可用的文件,然后您可以将这些文件复制并粘贴到适当的路径。