I want to implement a loop where in each iteration I name the variable according to iterator value. For instance-
for i in range(1,10):
r<value of i> = # some value
Is there a way i can do it, other than making all these variables as string keys in a dictionary as mentioned in How do you create different variable names while in a loop? (Python). I want each to be a separate variable.