records = [["chi", 20.0],["beta", 50.0],["alpha", 50.0]]
a = len(records)
for i in range(3):
var = records[i]
print(var)
What I want to do is to create a different variable for each list (for instance there are three lists in records so i want to assign each list to a different variable (3 variables since there are three lists)). However, it only prints the last list(["alpha", 50.0]) and only one variable is assigned (var).