概要
assert 前提条件
実行結果
True時
Error表示なしで無事にプログラム遂行。
def tasu(x): return 5+x x = 10 assert tasu(x) >= 0
False時
Error表示ありでプログラム停止。
def tasu(x): return 5+x x = -10 assert tasu(x) >= 0
表示イメージ
--------------------------------------------------------------------------- AssertionError Traceback (most recent call last) <ipython-input-7-419dbb575edd> in<cell line: 5>() 3 4 x = -10 ----> 5 assert tasu(x) >= 0 6 7 x = 10 AssertionError: