Skip to main content

Practice ยท 1 of 3

Assert with a Message

Write validate_age(age): raise AssertionError('age must be an int') when age is not an int (booleans are NOT ints here), AssertionError('age out of range') when outside 0..150, and return the string ok otherwise.

Difficulty: beginner

Back to lesson: Practice: Assertions & Make-the-Tests-Pass