try… except异常处理结构
简述一下try…except的用法:
try 块包含着可能引发异常的代码,except 块则用来捕捉和处理发生的异常。执行的时候,如果 try 块中没有引发异常,则跳过 except 块继续执行后续代码;如果 try块中发生了异常,则跳过 try 块中的后续代码,跳到相应的 except 块中处理异常;异常处理完后,继续执行后续代码。
try:
print("step1") a = 3/0
print("step2")
except BaseException as e:
print("step3")
print(e)
print("step4")
执行完成后的结果:
step1
step2
step4