I want to make something like this:
x = 5
while x >= 1
s(x) = input("something: ")
x = x - 1
So then there will be five separate input variable, that is S1, S2, S3, etc.
I want to make something like this:
x = 5
while x >= 1
s(x) = input("something: ")
x = x - 1
So then there will be five separate input variable, that is S1, S2, S3, etc.