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