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