python中try/except/else/finally的用法
2021-01-22 19:14
标签:处理模块 other 存在 except exec block div code 异常 正常执行的程序在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格式:
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‘)
说明:
总的来说:
上一篇:3.从零学Java之(流程控制)
下一篇:贪心算法
文章标题:python中try/except/else/finally的用法
文章链接:http://soscw.com/index.php/essay/45561.html