How can I create varying variable name?
like i am iterating in a loop say from 0 to 100.
I need to create different variable in each iteration and assign some values to it. an example
for i in range(0,100):
'var'+i=i
Doesnot seems valid. I want to create variables in each iteration like var0,var1 etc and should be able to access it with that names. Can some one suggest me a solution