2019年10月31日 万能异常
Posted python1988
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了2019年10月31日 万能异常相关的知识,希望对你有一定的参考价值。
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日 万能异常的主要内容,如果未能解决你的问题,请参考以下文章
在 2019 年 10 月 31 日之前更新您的 Amazon RDS SSL/TLS 证书