侯体宗的博客
  • 首页
  • Hyperf版
  • beego仿版
  • 人生(杂谈)
  • 技术
  • 关于我
  • 更多分类
    • 文件下载
    • 文字修仙
    • 中国象棋ai
    • 群聊
    • 九宫格抽奖
    • 拼图
    • 消消乐
    • 相册

关于Python中异常(Exception)的汇总

Python  /  管理员 发布于 7年前   175

前言

Exception类是常用的异常类,该类包括StandardError,StopIteration, GeneratorExit, Warning等异常类。python中的异常使用继承结构创建,可以在异常处理程序中捕获基类异常,也可以捕获各种子类异常,python中使用try...except语句捕获异常,异常子句定义在try子句后面。

Python中的异常处理

异常处理的语句结构

try: <statements>  #运行try语句块,并试图捕获异常except <name1>: <statements>  #如果name1异常发现,那么执行该语句块。except (name2, name3): <statements>  #如果元组内的任意异常发生,那么捕获它except <name4> as <variable>: <statements>  #如果name4异常发生,那么进入该语句块,并把异常实例命名为variableexcept: <statements>  #发生了以上所有列出的异常之外的异常else:<statements>   #如果没有异常发生,那么执行该语句块finally: <statement>   #无论是否有异常发生,均会执行该语句块。

说明

  • else和finally是可选的,可能会有0个或多个except,但是,如果出现一个else的话,必须有至少一个except。
  • 不管你如何指定异常,异常总是通过实例对象来识别,并且大多数时候在任意给定的时刻激活。一旦异常在程序中某处由一条except子句捕获,它就死掉了,除非由另一个raise语句或错误重新引发它。

raise语句

raise语句用来手动抛出一个异常,有下面几种调用格式:

  • raise #可以在raise语句之前创建该实例或者在raise语句中创建。
  • raise #Python会隐式地创建类的实例
  • raise name(value) #抛出异常的同时,提供额外信息value
  • raise # 把最近一次产生的异常重新抛出来
  • raise exception from E

例如:

抛出带有额外信息的ValueError: raise ValueError('we can only accept positive values')

当使用from的时候,第二个表达式指定了另一个异常类或实例,它会附加到引发异常的__cause__属性。如果引发的异常没有捕获,Python把异常也作为标准出错消息的一部分打印出来:

比如下面的代码:

try: 1/0except Exception as E: raise TypeError('bad input') from E

执行的结果如下:

Traceback (most recent call last): File "hh.py", line 2, in <module> 1/0ZeroDivisionError: division by zeroThe above exception was the direct cause of the following exception:Traceback (most recent call last): File "hh.py", line 4, in <module> raise TypeError('bad input') from ETypeError: bad input

assert语句

assert主要用来做断言,通常用在单元测试中较多,到时候再做介绍。

with...as语句

with语句支持更丰富的基于对象的协议,可以为代码块定义支持进入和离开动作。

with语句对应的环境管理协议要求如下:

  • 环境管理器必须有__enter__和__exit__方法。

       __enter__方法会在初始化的时候运行,如果存在ass子在, __enter__函数的返回值会赋值给as子句中的变量,否则,直接丢弃。

       代码块中嵌套的代码会执行。

       如果with代码块引发异常, __exit__(type,value,traceback)方法就会被调用(带有异常细节)。这些也是由 sys.exc_info返回的相同值.如果此方法返回值为假,则异常会重新引发。否则,异常会终止。正常 情况下异常是应该被重新引发,这样的话才能传递到with语句之外。

       如果with代码块没有引发异常, __exit__方法依然会被调用,其type、value以及traceback参数都会以None传递。

下面为一个简单的自定义的上下文管理类。

class Block: def __enter__(self):  print('entering to the block')  return self  def prt(self, args):  print('this is the block we do %s' % args) def __exit__(self,exc_type, exc_value, exc_tb):  if exc_type is None:   print('exit normally without exception')  else:   print('found exception: %s, and detailed info is %s' % (exc_type, exc_value))  return Falsewith Block() as b: b.prt('actual work!') raise ValueError('wrong')

如果注销到上面的raise语句,那么会正常退出。

在没有注销掉该raise语句的情况下,运行结果如下:

entering to the blockthis is the block we do actual work!found exception: <class 'ValueError'>, and detailed info is wrongTraceback (most recent call last): File "hh.py", line 18, in <module> raise ValueError('wrong')ValueError: wrong

异常处理器

如果发生异常,那么通过调用sys.exc_info()函数,可以返回包含3个元素的元组。 第一个元素就是引发异常类,而第二个是实际引发的实例,第三个元素traceback对象,代表异常最初发生时调用的堆栈。如果一切正常,那么会返回3个None。

Python的Builtins模块中定义的Exception

|Exception Name|Description||BaseException|Root class for all exceptions|| SystemExit|Request termination of Python interpreter||KeyboardInterrupt|User interrupted execution (usually by pressing Ctrl+C)||Exception|Root class for regular exceptions|| StopIteration|Iteration has no further values|| GeneratorExit|Exception sent to generator to tell it to quit|| SystemExit|Request termination of Python interpreter|| StandardError|Base class for all standard built-in exceptions||  ArithmeticError|Base class for all numeric calculation errors||   FloatingPointError|Error in floating point calculation||   OverflowError|Calculation exceeded maximum limit for numerical type||   ZeroDivisionError|Division (or modulus) by zero error (all numeric types)||  AssertionError|Failure of assert statement||  AttributeError|No such object attribute||  EOFError|End-of-file marker reached without input from built-in||  EnvironmentError|Base class for operating system environment errors||   IOError|Failure of input/output operation||   OSError|Operating system error||    WindowsError|MS Windows system call failure||    ImportError|Failure to import module or object||    KeyboardInterrupt|User interrupted execution (usually by pressing Ctrl+C)||   LookupError|Base class for invalid data lookup errors||    IndexError|No such index in sequence||    KeyError|No such key in mapping||   MemoryError|Out-of-memory error (non-fatal to Python interpreter)||   NameError|Undeclared/uninitialized object(non-attribute)||    UnboundLocalError|Access of an uninitialized local variable||   ReferenceError|Weak reference tried to access a garbage collected object||   RuntimeError|Generic default error during execution||    NotImplementedError|Unimplemented method||   SyntaxError|Error in Python syntax||    IndentationError|Improper indentation||     TabErrorg|Improper mixture of TABs and spaces||   SystemError|Generic interpreter system error||   TypeError|Invalid operation for type||   ValueError|Invalid argument given||    UnicodeError|Unicode-related error||     UnicodeDecodeError|Unicode error during decoding||     UnicodeEncodeError|Unicode error during encoding||     UnicodeTranslate Error|Unicode error during translation||  Warning|Root class for all warnings||   DeprecationWarning|Warning about deprecated features||   FutureWarning|Warning about constructs that will change semantically in the future||   OverflowWarning|Old warning for auto-long upgrade||   PendingDeprecation Warning|Warning about features that will be deprecated in the future||   RuntimeWarning|Warning about dubious runtime behavior||   SyntaxWarning|Warning about dubious syntax||   UserWarning|Warning generated by user code|

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作能带来一定的帮助,如果有疑问大家可以留言交流。


  • 上一条:
    Python中的字符串操作和编码Unicode详解
    下一条:
    python:socket传输大文件示例
  • 昵称:

    邮箱:

    0条评论 (评论内容有缓存机制,请悉知!)
    最新最热
    • 分类目录
    • 人生(杂谈)
    • 技术
    • linux
    • Java
    • php
    • 框架(架构)
    • 前端
    • ThinkPHP
    • 数据库
    • 微信(小程序)
    • Laravel
    • Redis
    • Docker
    • Go
    • swoole
    • Windows
    • Python
    • 苹果(mac/ios)
    • 相关文章
    • 在python语言中Flask框架的学习及简单功能示例(0个评论)
    • 在Python语言中实现GUI全屏倒计时代码示例(0个评论)
    • Python + zipfile库实现zip文件解压自动化脚本示例(0个评论)
    • python爬虫BeautifulSoup快速抓取网站图片(1个评论)
    • vscode 配置 python3开发环境的方法(0个评论)
    • 近期文章
    • 智能合约Solidity学习CryptoZombie第四课:僵尸作战系统(0个评论)
    • 智能合约Solidity学习CryptoZombie第三课:组建僵尸军队(高级Solidity理论)(0个评论)
    • 智能合约Solidity学习CryptoZombie第二课:让你的僵尸猎食(0个评论)
    • 智能合约Solidity学习CryptoZombie第一课:生成一只你的僵尸(0个评论)
    • 在go中实现一个常用的先进先出的缓存淘汰算法示例代码(0个评论)
    • 在go+gin中使用"github.com/skip2/go-qrcode"实现url转二维码功能(0个评论)
    • 在go语言中使用api.geonames.org接口实现根据国际邮政编码获取地址信息功能(1个评论)
    • 在go语言中使用github.com/signintech/gopdf实现生成pdf分页文件功能(0个评论)
    • gmail发邮件报错:534 5.7.9 Application-specific password required...解决方案(0个评论)
    • 欧盟关于强迫劳动的规定的官方举报渠道及官方举报网站(0个评论)
    • 近期评论
    • 122 在

      学历:一种延缓就业设计,生活需求下的权衡之选中评论 工作几年后,报名考研了,到现在还没认真学习备考,迷茫中。作为一名北漂互联网打工人..
    • 123 在

      Clash for Windows作者删库跑路了,github已404中评论 按理说只要你在国内,所有的流量进出都在监控范围内,不管你怎么隐藏也没用,想搞你分..
    • 原梓番博客 在

      在Laravel框架中使用模型Model分表最简单的方法中评论 好久好久都没看友情链接申请了,今天刚看,已经添加。..
    • 博主 在

      佛跳墙vpn软件不会用?上不了网?佛跳墙vpn常见问题以及解决办法中评论 @1111老铁这个不行了,可以看看近期评论的其他文章..
    • 1111 在

      佛跳墙vpn软件不会用?上不了网?佛跳墙vpn常见问题以及解决办法中评论 网站不能打开,博主百忙中能否发个APP下载链接,佛跳墙或极光..
    • 2016-10
    • 2016-11
    • 2018-04
    • 2020-03
    • 2020-04
    • 2020-05
    • 2020-06
    • 2022-01
    • 2023-07
    • 2023-10
    Top

    Copyright·© 2019 侯体宗版权所有· 粤ICP备20027696号 PHP交流群

    侯体宗的博客