码迷,mamicode.com
首页 > 其他好文 > 详细

2019年10月31日 万能异常

时间:2019-10-31 21:54:32      阅读:60      评论:0      收藏:0      [点我收藏+]

标签:error   nbsp   str   continue   循环   tin   except   输入   实现   

 

Exception  万能异常

while True: #用while + continue 实现循环输入
    try:
        age=input(>>)
        int(age)

        num=input(num2》》》)
        int(num)

    except ValueError as e: #把valueerror内容 取名为e,在哪个地方捕捉到异常,则会跳到except 继续往下执行
        print(e)
    except KeyError as e:
        print(keyerror,e)
    except Exception as V:  #万能异常
        print(Exception??,V)
        
        continue

 

什么时候用异常处理?!

加多了会导致可读性差。只有在异常无法预知的情况下,才应该加上 try-except 。

 

2019年10月31日 万能异常

标签:error   nbsp   str   continue   循环   tin   except   输入   实现   

原文地址:https://www.cnblogs.com/python1988/p/11773783.html

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