I can't open a CSV file on Jupyter Notebook. Every time I try to open up, I get this...
Any suggestions or advice would be much appreciated!
I can't open a CSV file on Jupyter Notebook. Every time I try to open up, I get this...
Any suggestions or advice would be much appreciated!
The issue is with the forward slashes in your path. Change them to double backslashes:
C:/Users/nsap/desktop...
to
C:\\Users\\nsap\\desktop
Please see this stackoverflow link for more info Error while reading a csv file in python using pandas