I'm writing a program in Python where I would like to do the following: I ask for a certain input by writing
x = int(input())
Now, given the number 'N' I assign to this input, I would to then get N lines asking for new input. For example, if I give as input the number 3, I would like the program to ask for 3 new inputs and assign them to certain letters:
x = int(input())
3
Then
a = input()
b = input()
c = input()
Any idea on how to do this?