1
I need to store the 10 numbers typed by the user in a list, only using "for".
for c in range(0, 10):
s = int(input())
Then I would just need to know how I store each number after being typed and not only the last one, as I currently know how to do.
This is the only use of this function or it has other uses?
– Lucas Souza
the use of it is just to add an element at the end of the list
– Vintorisk