python append number to each elem list code example Example: how to append a number to a list in python l = [1, 2, 4, 5] new_item = 6 l.append(6) print(l)