For instance, I want to type country0 = code0 + 'abc'
and then do the same thing for all integers from 0 to 9.
However, the following snippet obviously doesn't work:
for i in range(10):
country + i = code + i + 'abc'
So, what can be done instead? Your assistance is appreciated!