Examveda

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)

A. 9997

B. 9999

C. 9996

D. None of the mentioned

Answer: Option C


This Question Belongs to Python Program >> Functions In Python

Join The Discussion

Related Questions on Functions in Python