string1 = "content"
string2 = "some other content"
string3 = "etc."
final_string = ""
for i in range(1, x):
final_string += string[i]
You get the gist.. Is this possible? Converting string to a string itselves, appending a number (as a string) wouldn't work as "stringx" would be a string, thus being added to final_string as a string: final_string = content
Either way, am interested to hear any ideas - sure the "problem" can be solved in many ways, but was interested if this method is possible.