Traceback (most recent call last): File "D:\pycharm\PyCharm Community Edition 2022.2.3\wbwj.py", line 1, in <module> with open('marks.txt', 'r') as f: FileNotFoundError: [Errno 2] No such file or directory: 'marks.txt'
时间: 2024-03-18 11:45:29 浏览: 67
Mac下anaconda中Spyder打开报错Traceback(most recent call last)…问题
5星 · 资源好评率100%
这个错误提示是文件不存在的错误,也就是说程序找不到名为 `marks.txt` 的文件。请确认以下几个问题:
1. 您的程序文件(`wbwj.py`)和 `marks.txt` 文件是否在同一个文件夹下?
2. 您确定 `marks.txt` 文件名没有拼写错误或者文件类型不正确(比如是 `marks.text` 或者 `marks.txt.txt`)?
3. 您是否有读取 `marks.txt` 文件的权限?
请确认以上问题后,重新运行程序。如果问题仍然存在,请检查文件路径是否正确,或者尝试将文件路径写成绝对路径。
阅读全文