Q. What is the output of the following code?
Code:
print(min(max(False,-30,-4), 12,7))
β
Correct Answer: (B)
False
print(min(max(False,-30,-4), 12,7))
You must be Logged in to update hint/solution