I have created a python program that works fine. but I want to make it more neat, I ask the user for numbers, number1, number2 etc. up to 5. I want to just do this with a for loop though, like this
for i in range(0,5):
number(i) = int(input("what is the number"))
I realise that this code docent actually work but that is kind of what I want to do.