标签: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 。
标签:error nbsp str continue 循环 tin except 输入 实现
原文地址:https://www.cnblogs.com/python1988/p/11773783.html