FileNotFoundError: [Errno 2] File does not exist Jupyter notebook
Cause:
The path or file you specified does not exist
df=pn.read_csv(r"C:\kisha\Downloads\owid-covid-data.csv")
FileNotFoundError: [Errno 2] File C:\kisha\Downloads\owid-covid-data.csv does not exist: 'C:\\kisha\\Downloads\\owid-covid-data.csv'

Workaround:
Get the current directory and specify the right path to the dataset
import os
print(os.getcwd())
