Get your own Python server Result Size: 625 x 565
x
 
x = "welcome"
#if condition returns False, AssertionError is raised:
assert x != "hello", "x should be 'hello'"
Traceback (most recent call last):
  File "demo_ref_keyword_assert2.py", line 4, in <module>
    assert x != "hello", "x should be 'hello'"
AssertionError: x should be 'hello'