try 函数

try:
    #可能出错的代码
except 错误类型 as e:
    #出错进行的代码
else:
    #不出错才执行的代码
finally:
    #无论是否出错都要进行的代码

你可能感兴趣的:(try 函数)