add a number to each element in list python code example
Example 1: how to append a number to a list in python
l = [1, 2, 4, 5]
new_item = 6
l.append(6)
print(l)
Example 2: how to add a number to every element in a list python
new_list = [x+1 for x in my_list]