I want to save multiple inputs. If the user of the program wants to loop it 100 times I want the program to save 100 diffrent variables like n1,n2,3 and so on.
First round:
while True:
n1 = input("What number? (done to quit) ")
if n1 == 'done':
break
print(n1)
print(n2) and so on..
Second round:
while True:
n2 = input("What number? (done to quit) ")
if n2 == 'done':
break
print(n1)
print(n2) and so on..
Is that possible in python3? I have googled alot and can´t find anything about it! :/
Regards