How can i make a list's name change for each round in a for loop as below?
list_of_names=["A","B"]
for item in list_of_names:
x_i=[1,2,3]
print "done"
The for loop will have 2 loops so I would like 'i' in x_i to be x_A and x_B for each loop respectively.