I would use a list:
string = []
for i in range(0, 9):
string.append("Hello")
This way, you would have 9 "Hello" and you could get them individually like this:
string[x]
Where x
would identify which "Hello" you want.
So, print(string[1])
would print Hello
.