FileNotFoundError: [Errno 2] 没有这样的文件或目录: 'statistics.csv'
txt = open("statistics.csv")
位于同一文件夹中,
Projects:
US_statistics:
statistics.csv
main.py
不断收到此错误,FileNotFoundError:[Errno 2]没有这样的文件或目录:'statistics.csv',但是该文件与 main.py尝试使用路径
C:\Users\user_name\OneDrive\Documents\CODE\Programs\Python\Projects\US_statistics\statistics.csv
但我仍然收到相同的错误。
使用 os.getcwd 和 os.path.realpath(file) 并且路径与文件所在的位置匹配。
txt = open("statistics.csv")
Keep getting this error, FileNotFoundError: [Errno 2] No such file or directory: 'statistics.csv', however the file is in the same folder as main.py
Projects:
US_statistics:
statistics.csv
main.py
tried using path
C:\Users\user_name\OneDrive\Documents\CODE\Programs\Python\Projects\US_statistics\statistics.csv
yet I still get the same error.
used os.getcwd and os.path.realpath(file) and paths match up to where the files are.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试直接运行它,
而不是在环境中或通过 Visual Studio Code 中的运行按钮运行
这应该有效吗?
Try to run it directly over
instead of in a environment or over the run button from Visual Studio Code
this should work?
如果您使用Visual Studio Code
您应该注意到,您已经从 Python 文件所在的文件夹中完全打开了工作环境
If you use Visual Studio Code
You should note that you have opened the working environment exactly from inside the folder where the Python file is located