What is the output of the following code ?
foo = lambda a, b: a if a < b else b print(foo(5, 10))
foo = lambda a, b: a if a < b else b is similar to
foo = lambda a, b: a if a < b else b
def foo(a, b): if a < b: return a else: return b
Comment here: