print the list after adding 5 to each element of it code example Example: add 1 to all elements in list python lst = [1,2,3] list(map(lambda x:x+1, lst))