python assert
阿新 • • 發佈:2018-08-28
std raise ast true error 錯誤 als file assert assert(斷言):
assert condition
assert 可以作為判斷,在結果為True時什麽都不返回,在結果為False時會觸發一個錯誤,它等價於下面的判斷
if not condition:
? ? raise AssertionError()
測試下:
\>>> assert True # nothing happens
assert False
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AssertionError\>>>
assert還可以包含一個額外的錯誤消息選項,如下面
\>\>\> assert False, ‘這是一個錯誤‘
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AssertionError: 這是一個錯誤
\>>>
\>>> assert 1==2,(‘%s, 1不等於%d‘ % (‘hello‘, 2))
Traceback (most recent call last):
File "<stdin>", line 1, in <module>AssertionError: hello, 1不等於2
\>>>
python assert