Q. What is the output of the below code?
Code:
list(map(lambda x: x * x, [1,2,3,4,5]))
β
Correct Answer: (A)
[1, 4, 9, 16, 25]
list(map(lambda x: x * x, [1,2,3,4,5]))
You must be Logged in to update hint/solution