Pythonのassert文
https://docs.python.org/ja/3/reference/simple_stmts.html#grammar-token-assert-stmt
assert expression
assert expression1, expression2 もある!
code:python
>> assert 1 == 1
>> assert 1, 1
>> assert 1, 2 # 1 == 2 ではないのでカンマの左右の式を比較しているのではない
>> assert 1 == 2
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AssertionError