python assert
2021-07-12 01:07
标签:消息 line 错误 most one 额外 call lin condition assert condition assert 可以作为判断,在结果为True时什么都不返回,在结果为False时会触发一个错误,它等价于下面的判断 if not condition: 测试下: \>>> assert True # nothing happens assert还可以包含一个额外的错误消息选项,如下面 \>\>\> assert False, ‘这是一个错误‘ python assert 标签:消息 line 错误 most one 额外 call lin condition 原文地址:http://blog.51cto.com/superzhangqiang/2165504
? ? raise AssertionError()
assert False
Traceback (most recent call last):
File "
AssertionError
\>>>
Traceback (most recent call last):
File "
AssertionError: 这是一个错误
\>>>
\>>> assert 1==2,(‘%s, 1不等于%d‘ % (‘hello‘, 2))
Traceback (most recent call last):
File "
AssertionError: hello, 1不等于2
\>>>
下一篇:CSS实现图片阴影效果