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