How do I use a loop to name variables? For example, if I wanted to have a variable double_1 = 2
, double_2 = 4
all the the way to double_12 = 24
, how would I write it?
I get the feeling it would be something like this:
for x in range(1, 13):
double_x = x * 2
# I want the x in double_x to count up, e.g double_1, double_2, double_3
Obviously, this doesn't work, but what would be the correct syntax for implementing the looped number into the variable name? I haven't coded for a while, but I do remember there was a way to do this.