assert
assert expression # equivalent to if __debug__: if not expression: raise AssertionError assert expression, other_expression # equivalent to if __debug__: if not expression: raise AssertionError(other_expression)