I\'m trying to initialize \'big_list\', which is a list containing lists, and we know in advance that there will be 200 lists within \'big_list\', and that each list will contai
You can use list comprehension for example:
big_list = [[] for _ in range(200)]
That will create a list containing 200 different lists.