码迷,mamicode.com
首页 > 编程语言 > 详细

【python 第10日】 except异常

时间:2019-01-15 22:34:26      阅读:199      评论:0      收藏:0      [点我收藏+]

标签:erro   span   ror   print   异常   python   class   err   分支   

except 多分支
try:
    a =1
    # raise Exception
except ValueError as e:
    print(e)
except Exception as e:
    print(e)
else:
    print("try正常就执行我")
finally:
    print("无论成功与否都执行我")

 

【python 第10日】 except异常

标签:erro   span   ror   print   异常   python   class   err   分支   

原文地址:https://www.cnblogs.com/zhouguanglu/p/10274624.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!