demo_if_short.py:
a = 200 b = 33 if a > b: print("a is greater than b")
➜ begtut>python demo_if_short.py
"a is greater than b"