Source Code:
(back to article)
x = 5 print("x is greater than 3") if x > 3 else print("x is not greater than 3")
Result:
Report an issue