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

61-自定义异常

时间:2019-05-31 11:53:20      阅读:112      评论:0      收藏:0      [点我收藏+]

标签:erro   test   int   color   recent   年龄   ISE   自定义异常   error   

def set_age(name,age):
    if not 0 < age < 80:
        raise ValueError(年龄超过范围)  # 自主决定触发什么样的异常
    print("%s is %d years old" % (name,age))

def set_age2(name,age):
    assert 0 < age < 80, 年龄超过范围  # 断言异常
    print("%s is %d years old" % (name,age))

if __name__ == __main__:
    set_age(xiaoming,50)
    set_age2(xiaohong, 90)

结果输出:
Traceback (most recent call last):
  File "F:/20180731桌面/CMDB/CMDB/test/Python_test.py", line 984, in <module>
    set_age2(xiaohong, 90)
  File "F:/20180731桌面/CMDB/CMDB/test/Python_test.py", line 979, in set_age2
    assert 0 < age < 80, 年龄超过范围  # 断言异常
AssertionError: 年龄超过范围
xiaoming is 50 years old

 



61-自定义异常

标签:erro   test   int   color   recent   年龄   ISE   自定义异常   error   

原文地址:https://www.cnblogs.com/hejianping/p/10954329.html

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