I'm trying to make 1 list for every item in this list, but the length of the list is based on user input, so that is why I'm using a for a loop.
My Idea:
listno = 0
for i in arialabel:
a+str(listno) = []
print(a+str(listno))
listno+=1
My current problem is that you can't use operators in the names of variables.
yourlists = []; for _ in range(howmany): yourlists.append([])