Share
printPrint min of two numbers
Question
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Print the minimum of two numbers using conditional operators.
Answers ( 2 )
print( (b, a) [a < b] )
x, y = 67, 78
print(x if x<y else y)