1The assert keyword is used when debugging code.
2
3The assert keyword lets you test if a condition in your code returns True, if not, the program will raise an AssertionError.
4
5You can write a message to be written if the code returns False, check the example below.