I am trying to make a program which so i can put in orders and have shopping and handling calculated the problem is, each time i run the program there will be a different number of people placing an order, how would i set up a loop that on each cycle creates a new variables? example:
loopController = input("how many order did we have today? ")
while loopController >= 0:
name = raw_input("Who's order")
order = input("How much was the order")
orderTotal = order + shippingCharge
loopController = loopController - 1
after all loops are completed i would like to be able to print out a list of each person and their corresponding order total
any help would be greatly appreciated.