FileNotFoundError: [Errno 2] 没有这样的文件或目录: 'statistics.csv'

发布于 2025-01-11 03:35:54 字数 464 浏览 2 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

请别遗忘我 2025-01-18 03:35:54

尝试直接运行它,

python main.py 

而不是在环境中或通过 Visual Studio Code 中的运行按钮运行
这应该有效吗?

Try to run it directly over

python main.py 

instead of in a environment or over the run button from Visual Studio Code
this should work?

望笑 2025-01-18 03:35:54

如果您使用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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文