RosettaCodeData/Task/Assertions/Python/assertions.py
Ingy döt Net 80737d5a6a new tasks
2013-04-09 00:46:50 -07:00

6 lines
263 B
Python

a = 5
#...input or change a here
assert a == 42 # throws an AssertionError when a is not 42
assert a == 42, "Error message" # throws an AssertionError
# when a is not 42 with "Error message" for the message
# the error message can be any expression