I want many (hundreds) of lists in python that follow this form:
[random.randint(1,100), random.randint(50, 100), random.randint(10,20), random.randint(1,100)]
And I want to name them list1, list2, list3, etc. all the way up to list500, list501, etc.
Is there a way to automate that all? Or should I not be using lists?