Q. What is the output of the following code?
Code:
res = lambda x: x * x print(res(5))
β
Correct Answer: (C)
25
res = lambda x: x * x print(res(5))
You must be Logged in to update hint/solution