I it possible in python to create a set of lists with index i in the name?
for i in range(0,5):
list_i = [] # here i should change according to index i
I would like to create 5 lists with names: list_0, list_1 ... _list_4 and the append something to these lists.