How would I go about creating a list that will store info inside the for loop. Because they keep taking in new info every loop I need a way for it to automatically create new name for the list. I hope the code clears up what I want to accomplish
x = 1
while x <= ItemsInList:
str(x)+'list' = []
x +=1
Is it possible to create lists like 1list = [], next loop it will be 2list = [] etc.