Jupyter notebook not reading CSV file in PyCharm
Jupyter notebook not reading CSV file in PyCharm
I'm running jupyter notebook in pycharm and try to do this pd.read_csv('all/sample_submission.csv')
It says FileNotFoundError: File b'all/sample_submission.csv' does not exist
But when I run the same code in browser it works.
Any ideas what could be the reason for such behavior?
pd.read_csv('all/sample_submission.csv')
FileNotFoundError: File b'all/sample_submission.csv' does not exist
By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.