标签:处理模块 other 存在 except exec block div code 异常
1 try: 2 Nomal execution block 3 except A: 4 Exception A handle 5 except B: 6 Exception B handle 7 except: 8 Other Exception handle 9 else: 10 if no exception, get here 11 finally: 12 print(‘finally‘)
正常执行的程序在try下面执行,在执行中如果发生了异常,则中断当前执行然后执行except中的部分,如果没有异常即不执行except的情况下,则会执行else中的语句,finally语句是最后无论是否有异常都要执行的代码。
python中try/except/else/finally的用法
标签:处理模块 other 存在 except exec block div code 异常
原文地址:https://www.cnblogs.com/sunshine-blog/p/12886667.html