Q. What will be the output of the following Python function?
Code:
min(max(False,-3,-4), 2,7)
β
Correct Answer: (C)
False
min(max(False,-3,-4), 2,7)
You must be Logged in to update hint/solution