How do i solve this
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
Rajanikant HawaldarPosted Dec 29, 2020, 12:54 PM