I have the following lists
list_0=[]
list_1=[]
list_2=[]
I want to assign to each list a value in a for loop. so that in the first iteration, I can assign a value to the list_0, by the second iteration , a value to the list_1 and so forth. how can I do it ?
Thanks