The correct answer is:
assert statement
The assert
statement helps detect problems early on by declaring conditions that must be true. If the condition is false, it raises an AssertionError
, which acts as a debugging aid.
Responses
conditional statement
conditional statement
declarative statement
declarative statement
assert statement
assert statement
statement
1 answer
The correct answer is:
assert statement
The assert
statement helps detect problems early on by declaring conditions that must be true. If the condition is false, it raises an AssertionError
, which acts as a debugging aid.