Result Size: 625 x 571
demo_ref_keyword_assert.py:
x
 
x = "hello"
#if condition returns True, then nothing happens:
assert x == "hello"
#if condition returns False, AssertionError is raised:
assert x == "goodbye"
C:\Users\My Name>python demo_keyword_assert.py
Traceback (most recent call last):
  File "demo_ref_keyword_assert.py", line 5, in <module>
    assert x == "goodbye"
AssertionError