python3学习之异常
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python3学习之异常相关的知识,希望对你有一定的参考价值。
##异常处理 #try: # pass #except Exception as ex: Exception(捕获所有错误)可以换成任何异常类型,代表只捕获指定错误, # 可以写多个except # pass ##异常类型: # # ##完整的异常代码: # try: # raise Exception(‘testeetst‘) #主动触发异常 ,Exception可以是其他异常类型 # except ValueError as ex: # print(ex) # except Exception as ex: # pass # else: # pass # finally: # pass ##自定义异常 #继承Exception类 # ##断言 #assert 1==1 相当于if else 然后抛出异常 while True: n1 = input("num1: ") n2 = input("num2: ") try: n1 = int(n1) n2 = int(n2) print(n1 + n2) except Exception as e: print(e)
以上是关于python3学习之异常的主要内容,如果未能解决你的问题,请参考以下文章