The correct response is:
assert statement
The assert
statement in Python is used to set conditions that must be true at a certain point in the code. If the condition evaluates to false, an AssertionError
is raised, which helps in detecting problems early during development.