I am new to python and have learnt the basics. Tried to open a .csv file in my Jupyter Notebook but receiving an OSError when I run it. Tried entering the root address too but to no avail.
import pandas as pd
df = pd.read_csv("vgsales.csv")
df
ERROR : OSError Traceback (most recent call last) in 1 import pandas as pd ----> 2 df = pd.read_csv("vgsales.csv") 3 df OSError: Initializing from file failed