What will be the output of the following Python code?
min = (lambda x, y: x if x < y else y)
min(101*99, 102*98)
min = (lambda x, y: x if x < y else y)
min(101*99, 102*98)A. 9997
B. 9999
C. 9996
D. None of the mentioned
Answer: Option C

Join The Discussion