和try一起搭配使用,表示无论发生异常或否都要执行finally语句块,由于finally的这个特性,finally经常被用来做一些清理工作。
finally主要与try一起组合使用,完整的语句格式如下:
try:
normal execution block
except A:
exception A handle
except B:
exception B handle
except:
other exception handle
else:
if no exception,get here
finally:
do final handle
其中,except、else都是可选项,甚至可以是try ... finally ... 形式;finally的语句块都会在最后执行。