当前位置 : 主页 > 编程语言 > python >

python raise assert

来源:互联网 收集:自由互联 发布时间:2022-06-28
class MyException(Exception): def __init__(self,error_msg): self.error_msg=error_msg def __str__(self): return self.error_msg try: print('手动触发exception') raise MyException('出错了')#手动触发了exception错误 会被except Exc
class MyException(Exception):
def __init__(self,error_msg):
self.error_msg=error_msg
def __str__(self):
return self.error_msg
try:
print('手动触发exception')
raise MyException('出错了')#手动触发了exception错误 会被except Exception捕获
except Exception as e:
print('error:',e)

PS D:\python\py_test> python3 .\t1.py

手动触发exception
error: 出错了

print(123)

assert 1==1##若成立则执行后面的代码 反之直接报错

print(456)

 


上一篇:python 类特殊成员
下一篇:没有了
网友评论