As of right now i am a beginner with python. I wanna make a giant list of variables without having to write out each one, so far heres the idea:
    n=0
i=None
for i in range(10):
    n = n + 1
    x="hi"
    var = x+"{0}".format(n)
    print(var)
the output are strings but i want to make them variable that i can define freely. Any pointers>
