• python 标准异常总结


    AssertionError  断言语句   (assert)    失败

    AttributeError  尝试访问未知的对象属性

    EoFError   用户输入文件末尾标志EOF  (Ctrl+d)

    FloatingPoinError    浮点计算错误

    GeneratorExit generator.close() 方法被调用的时候

    ImportError   导入模块失败的时候

    IndexError 索引超出序列的范围

    KeyError  字典中查找一个不存在的关键字

    Keyboardlnterrupt  用户输入中断键   (ctrl+c)

    MemoryError   内存溢出  (可通过删除对象释放内存)

    NameError   尝试访问一个不存在的变量

    NotlmplementedError   尚未实现的方法

    OSError    操作系统产生的异常 (列如打开一个不存在的文件)

    OverflowError   数值运算超出最大限制

    ReferenceError  若引用 (weak  reference)  试图访问一个已经被垃圾回收机制回收的对象

    RuntimeError 一般的运行时错误

    Stoplteration  迭代器没有更多值

    SyntaxError  Python的语法错误

    IndentationError  缩进错误

    TabError  Tab和空格混合使用

    SystemError  不同类型间的无效操作

    UnboundLocaIError   访问一个未初始化的本地变量(NameError的子类)

    UnicodeError Unicode   相关的错误 (ValueError的子类)

    UnicodeEncodeError Unicode编码时的错误(UnicodeError的子类)

    UnicodeDecodeError Unicode解码时的错误(UnicodeError的子类) 

    UnicodeTranslateError Unicode转换时的错误(UnicodeError的子类) 

    ValueError 传入无效的参数

    ZeroDivisionError 除数为零

    以下是 Python 内置异常类的层次结构:BaseExceptionSystemExit

    KeyboardInterrupt
    GeneratorExit
    Exception
    StopIteration
    ArithmeticError
    FloatingPointError
    OverflowError
    ZeroDivisionError
    AssertionError
    AttributeError
    BufferError
    EOFError
    ImportError
    LookupError
    IndexError
    KeyError
    MemoryError
    NameError
    UnboundLocalError
    OSError
    BlockingIOError
    ChildProcessError
    ConnectionError
    BrokenPipeError
    ConnectionAbortedError
    ConnectionRefusedError
    ConnectionResetError
    FileExistsError
    FileNotFoundError
    InterruptedError
    IsADirectoryError
    NotADirectoryError
    PermissionError
    ProcessLookupError
    TimeoutError
    ReferenceError
    RuntimeError
    NotImplementedError
    SyntaxError
    IndentationError
    TabError
    SystemError
    TypeError
    ValueError
    UnicodeError
    nicodeDecodeError
    |UnicodeEncodeError
    UnicodeTranslateError
    Warning
    DeprecationWarning
    PendingDeprecationWarning
    RuntimeWarning
    SyntaxWarning
    UserWarning
    FutureWarning
    ImportWarning
    UnicodeWarning
    BytesWarning
    ResourceWarning

  • 相关阅读:
    vue之下拉菜单Dropdown的使用
    elinput输入框的readonly属性
    通过CollectionUtils工具类判断集合是否为空,通过StringUtils工具类判断字符串是否为空
    前端与后端之间参数的传递与接收和@RequestBody,@Requestparam,@Param三个注解的使用
    为什么数据库能查出两条id相同的数据
    js中函数调用时,对参数个数和类型没有要求
    避免创建不需要的对象,消除过期对象的引用
    避免使用终结方法
    避免使用终结方法
    快速排序
  • 原文地址:https://www.cnblogs.com/haozong/p/11236928.html
Copyright © 2020-2023  润新知