Unable to read CSV file

I downloaded the movie data csv file from Kaggle. I have entered the correct path but I am unable to read the csv file as there is an error “OSError: Initializing from file failed” Please let me know how to resolve this.

Hey @dishagoyal2,
First put the file in the same directory, and read file with file = pd.read_csv("filename.csv")
This command should work fine.