What I want to do is save variable, repeatedly, but with another number.
I want to save arrays like below.
test_1 = 1
test_2 = 1
test_3 = 1
test_4 = 1
test_5 = 1
This is what I tried to do.
for i in range(1,6):
test_i = 1
But the result was that the number 1 is saved in variable named as "test_i". It seems like change of i doesn't work at variable.