Result Size: 625 x 571
demo_if_else_short.py:
x
 
a = 2
b = 330
print("A") if a > b else print("B")
C:\Users\My Name>python demo_if_else_short.py
B