python异常处理结构try语句中、能反复多次出现的_关于
Python中异常(Excep。。。
这篇⽂章介绍的内容是关于关于Python中异常(Exception) ,有着⼀定的参考价值,现在分享给⼤家,有需要的朋友可以参考⼀下
异常是指程序中的例外,违例情况。异常机制是指程序出现错误后,程序的处理⽅法。当出现错误后,程序的执⾏流程发⽣改变,程序的控制权转移到异常处理。下⾯这篇⽂章主要汇总了关于Python中异常(Exception)的相关资料,需要的朋友可以参考下。
前⾔
Exception类是常⽤的异常类,该类包括StandardError,StopIteration, GeneratorExit, Warning等异常类。python中的异常使⽤继承结构创建,可以在异常处理程序中捕获基类异常,也可以捕获各种⼦类异常,python中使⽤pt语句捕获异常,异常⼦句定义在try ⼦句后⾯。
Python中的异常处理
异常处理的语句结构
try:
#运⾏try语句块,并试图捕获异常
except :
#如果name1异常发现,那么执⾏该语句块。
except (name2, name3):
#如果元组内的任意异常发⽣,那么捕获它
except as :
#如果name4异常发⽣,那么进⼊该语句块,并把异常实例命名为variable
except:
#发⽣了以上所有列出的异常之外的异常
else:
#如果没有异常发⽣,那么执⾏该语句块
finally:
#⽆论是否有异常发⽣,均会执⾏该语句块。
说明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/0
python的try和except用法
except Exception as E:
raise TypeError('bad input') from E
执⾏的结果如下:
Traceback (most recent call last):
File "hh.py", line 2, in
1/0
ZeropisionError: pision by zero
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "hh.py", line 4, in
raise TypeError('bad input') from E
TypeError: bad input
assert语句
assert主要⽤来做断⾔,通常⽤在单元测试中较多,到时候再做介绍。
with语句⽀持更丰富的基于对象的协议,可以为代码块定义⽀持进⼊和离开动作。
with语句对应的环境管理协议要求如下:环境管理器必须有__enter__和__exit__⽅法。
__enter__⽅法会在初始化的时候运⾏,如果存在ass⼦在, __enter__函数的返回值会赋值给as⼦句中的变量,否则,直接丢弃。
代码块中嵌套的代码会执⾏。
如果with代码块引发异常, __exit__(type,value,traceback)⽅法就会被调⽤(带有异常细节)。这些也是由 _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 False
with Block() as b:
b.prt('actual work!')
raise ValueError('wrong')
如果注销到上⾯的raise语句,那么会正常退出。
在没有注销掉该raise语句的情况下,运⾏结果如下:
entering to the block
this is the block we do actual work!
found exception: , and detailed info is wrong
Traceback (most recent call last):
File "hh.py", line 18, in
raise ValueError('wrong')
ValueError: wrong
异常处理器
如果发⽣异常,那么通过调⽤_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|
| ZeropisionError|pision (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异常处理⽅法

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。