Source Code:
(back to article)
x = 10 y = 5 max_value = x if x > y else y print(max_value) # prints 10
Result:
Report an issue