>assert helps in debugging, it is used to check if a certain condition is True, else raise an AssertionError.
a = 10
## Example 1: Check if a is 10
assert a == 10 # No error raised
## Example 2: Check if a is 30
assert a == 30, "Your error message here" # AssertionError