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