add 1 to every object in list python code example Example: add 1 to all elements in list python lst = [1,2,3] list(map(lambda x:x+1, lst))