I need to store the 10 numbers entered by the user into a list, only using the "for".
for c in range(0, 10):
s = int(input())
So I would just need to know how I store each number after being typed and not just the last one, as I do currently.