I want to make a while loop kind of like this
list=[]
while x in range(r):
list-x="something"
Where each time the loop begins it makes a new list with number (x). So if it loops over 5 times there will be different lists: list(1) list(2) list(3) list(4). '
Is this even possible?