• 技术文章 >Python技术 >Python基础教程

    python中FileNotFoundError的异常

    小妮浅浅小妮浅浅2021-05-14 09:55:11原创9343

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

    Traceback (most recent call last):
        File "alice.py", line 3, in <module>
            with open(filename) as f_obj:
    FileNotFoundError: [Errno 2] No such file or directory: 'alice.txt'

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

    filename = 'alice.txt'
    try:
        with open(filename) as f_obj:
            contents = f_obj.read()
    except FileNotFoundError:
        msg = "Sorry, the file " + filename + " does not exist."
        print(msg)

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

    Sorry, the file alice.txt does not exist.

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

    本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。

    专题推荐:python filenotfounderror
    上一篇:python中try-except处理异常的方法 下一篇:input在python中的使用注意

    相关文章推荐

    • python列表的优点探究• python中time模块的时间格式• python time模块处理系统时间的函数• python魔法方法有哪几种?• Python异步中loop抛出异常的解决• python中try-except处理异常的方法

    全部评论我要评论

    © 2021 Python学习网 苏ICP备2021003149号-1

  • 取消发布评论
  • 

    Python学习网