众所周知,在python中我们用try…except…来捕获异常,使用raise来抛出异常,但是多重的try…except…是如何使用的呢
当调用raise
进行抛出错误的时候,抛出错误的后面的代码不执行
def func(): print("hello") raise Exception("出现了错误") print("world") func()
打印的错误堆栈
如果抓取错误,就相当于if...else
,并不会打断代码的执行
def func(): try: print("hello") raise Exception("出现了错误") except Exception as why: print(why) print("world") func()
自定义异常需要我们继承异常的类,包括一些框架中的异常的类,我们自定义异常的话都需要继承他们
class MyError(Exception): pass def say_hello(str): if str != "hello": raise MyError("传入的字符串不是hello") print("hello") say_hello("world")
如果是嵌套的try...except...的话,这一层raise的错误,会被上一层的try...except...进行捕获
a=10 b=0 try: print (a/b) except Exception as e: print(Exception,":",e) finally: print ("always excute")
运行:
<class 'Exception'> : division by zero
always excute
import traceback try: print ('here1:',5/2) print ('here2:',10/5) print ('here3:',10/0) except Exception as e: traceback.print_exc()
运行:
here1: 2.5
here2: 2.0
Traceback (most recent call last):
File "/Users/lilong/Desktop/online_release/try_except_use.py", line 59, in <module>
print ('here3:',10/0)
ZeroDivisionError: division by zero
import sys try: print ('here1:',5/2) print ('here2:',10/5) print ('here3:',10/0) except Exception as e: info=sys.exc_info() print (info[0],":",info[1])
运行:
here1: 2.5
here2: 2.0
<class 'ZeroDivisionError'> : division by zero
注意:万能异常Exception
被检测的代码块抛出的异常有多种可能性,并且我们针对所有的异常类型都只用一种处理逻辑就可以了,那就使用Exception,除非要对每一特殊异常进行特殊处理。