Code :
print(min(max(False,-3,-4), 2,7))
Let's break down the expression step by step:
max(False, -3, -4): This evaluates to False because False is treated as 0 in numerical comparisons, and 0 is not greater than -3 or -4.
min(False, 2, 7): This evaluates to False because False is treated as 0 in numerical comparisons, and 0 is the minimum among False, 2, and 7.
So, the output of the expression will be False.
0 Comments:
Post a Comment