Increment AND concatenate a variable in Python
I want to increment a variable in a loop to get x1, x2, x3, etc.
your text
loop = 0
your text
While loop < 4
your text
xn = something, something else, something else again..
your text
n += 1
your text
loop += 1
At the end, I want to have x1, x2, x3 all equal to different things