demo_if_short.py:
a = 200 b = 33 if a > b: print("a is greater than b")
C:\Users\My Name>python demo_if_short.py
"a is greater than b"