RepeatCount = 5
for i in range(RepeatCount):
Name = input("Enter name: ")
Stat = input("Enter stat: ")
VariableX = "Name = " + "
Instead of VariableX, it would be Variable1 on the first loop, Variable 2 on the next loop and would create the amount of Variables depending on the RepeatCount number.
I'd then like to be able to use the Variables outside of the loop.
How would I do this? Thanks.