Python报错集合篇5-FileNotFoundError: [Errno 2] No such file or directory: '不存在的文档.txt'

本文介绍如何处理报错–FileNotFoundError: [Errno 2] No such file or directory: '不存在的文档.txt’

源代码:


f = open('不存在的文档.txt')
print(f.read())
f.close()

运行报错如下:

Traceback (most recent call last):
  File "D:/Program Files/PycharmProjects/pycharmPrj/zzz/Python/lx0.py", line 38, in 
    f = open('不存在的文档.txt')
FileNotFoundError: [Errno 2] No such file or directory: '不存在的文档.txt'

这里的FileNotFoundError报错也属于OSError报错类型,明显的是找不到文档,一般这种情况我们需要检查文档路径是否写对了。修改为正确的路径就可以了

你可能感兴趣的:(Python报错篇)