zoukankan      html  css  js  c++  java
  • 异常介绍

    <1>异常简介

    看如下示例:

        print '-----test--1---'
        open('123.txt','r')
        print '-----test--2---'
    

    运行结果:

    -----test--1---
    Traceback (most recent call last):
      File "D:Python_WorkspaceHelloWorldaaHello.py", line 2, in <module>
        open('123.txt','r')
    FileNotFoundError: [Errno 2] No such file or directory: '123.txt'
    

    说明:

    打开一个不存在的文件123.txt,当找不到123.txt 文件时,就会抛出给我们一个IOError类型的错误,No such file or directory:123.txt (没有123.txt这样的文件或目录)

    异常:

    当Python检测到一个错误时,解释器就无法继续执行了,反而出现了一些错误的提示,这就是所谓的"异常"

  • 相关阅读:
    自动化运维-ansible
    Linux中安装wget命令
    Celery
    SQLAlchemy
    非关系型数据库--MongoDB
    Flask框架
    Redis
    公钥与私钥
    win10 文件扩展名的更改
    if 和 elif 的区别
  • 原文地址:https://www.cnblogs.com/loaderman/p/6560183.html
Copyright © 2011-2022 走看看