python asserts code example
Example 1: assert syntax python
assert <condition>,<error message>
assert 1==2 , "Not True"
Example 2: assert python
x = "hello"
assert x == "goodbye", "x should be 'hello'"
-----------------------------------------------------------------
Traceback (most recent call last):
File "demo_ref_keyword_assert2.py", line 4, in <module>
assert x == "goodbye", "x should be 'hello'"
AssertionError: x should be 'hello'
Example 3: how to use assert in python
assert type(num) is int,"num must be an integer"