I have a list that should contain all my other lists. Currently I append every list separately but that just looks pretty ugly..
looplist = []  # initiate an empty list that contains all date from the other lists 
[...]
looplist.append(internallist1)
[...]
looplist.append(internallist10)
the internallists are all getting initialized and filled in a for loop
 
     
     
    