Skip to content Skip to sidebar Skip to footer

Pandas Can't Open A Csv File Filenotfounderror

I am having a hard time opening a csv with Pandas. I have tried the example in 'Pandas for Everyone' book, have googled many times and last example was here https://analytics4all.o

Solution 1:

Can you try below code

df=pd.read_csv('C:\\\\Users\\\\a089673\\\\Desktop\\\\lbcsv\\\\csv\\\\server.csv')
df

Hope it helps !

Solution 2:

Answer was to add the 's' at the end of the file name and to use the \ in the file path.

Post a Comment for "Pandas Can't Open A Csv File Filenotfounderror"