I\'m trying to load a .csv file using the pd.read_csv() function when I get an error despite the file path being correct and using raw strings.
.csv
pd.read_csv()
import pandas as pd path1 = 'C:\\Users\\Dell\\Desktop\\Data\\Train_SU63ISt.csv' path2 = 'C:\\Users\\Dell\\Desktop\\Data\\Test_0qrQsBZ.csv' df1 = pd.read_csv(path1) df2 = pd.read_csv(path2) print(df1) print(df2)