I'm looking for a way, in python 3.2, to create a large number of variables and assign them values. Something like
X = 10
Y = 10
A = 0
B = 0
while X >= 0:
while Y >= 0:
cell[C]X[A] = A
cell[C]Y[B] = B
B = B + 1
Y = Y - 1
C = C + 1
A = A + 1
X = X - 1
Which would optimally create 200 variables of cell1X1, cell1Y1, cell2X1, cell2Y2, etc etc etc.
Is this possible? How would it be done?
Please keep in mind that I'm still very new to python, so please make things as simple as possible.
Also, while I understand that there are other ways to do this, and they they are probably better, I still want to know how to do things this way.
I understand dictionaries might be better in every possible way, but that's not what I'm asking for.
Thanks for the help.
Edit: When I say new to python, I meant to say new to programming in general. Like very new. Like, just recently learned how to write functions.