how to add k to elements 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))