1
Answer

How do i solve this

Smitha Jain

Smitha Jain

4y
542
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)