Apologies if the question is hard to understand from the title but I'll try explain it in simple code.
numbers = []
for n in range(1,10):
numbers.append(n)
print(numbers)
So obviously the above will print a list of numbers 1-9:
[1, 2, 3, 4, 5, 6, 7, 8, 9]
But what if I want to save this output to be the input for 'numbers' for future runs? So that running it again will produce the following
[1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9]