python中FileNotFoundError的异常

1、Python无法读取不存在的文件,因此它引发一个异常:

Traceback(mostrecentcalllast):
File"alice.py",line3,in<module>
withopen(filename)asf_obj:
FileNotFoundError:[Errno2]Nosuchfileordirectory:'alice.txt'

在上述traceback中,最后一行报告了FileNotFoundError异常,这是Python找不到要打开的文件时创建的异常。在这个示例中,这个错误是函数open()导致的,因此要处理这个错误,必须将try语句放在包含open()的代码行之前:

filename='alice.txt'
try:
withopen(filename)asf_obj:
contents=f_obj.read()
exceptFileNotFoundError:
msg="Sorry,thefile"+filename+"doesnotexist."
print(msg)

2、try代码块引发FileNotFoundError异常,因此Python找出与该错误匹配的except代码块,并运行其中的代码。最终的结果是显示一条友好的错误消息,而不是traceback:

Sorry,thefilealice.txtdoesnotexist.

以上就是python中FileNotFoundError异常的介绍,希望能对大家有所帮助。更多Python学习指路:Python基础教程