For instance, lets say I have a for loop like this
for i in range(7):
var+i=i
How do I get it to work where 7 different variables are created where var0=0 and var1=1 var2=2, etc..
For instance, lets say I have a for loop like this
for i in range(7):
var+i=i
How do I get it to work where 7 different variables are created where var0=0 and var1=1 var2=2, etc..