1
Answer

How do i solve this

Photo of Smitha Jain

Smitha Jain

4y
603
1
lsd = [1,2,3,4,5] list(map(lambda x: x + 10 , lsd)) Error:list(map(lambda x: x + 10 , lsd)) Traceback (most recent call last): File "", line 1, in list(map(lambda x: x + 10 , lsd)) TypeError: 'list' object is not callable

Answers (1)