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