Based on the code below, I am trying to create a for loop that has a variable in it but the variable name changes based on counter number. What should I do? I want the final product of this for loop to be 3 variables X1 = user input, X2 = user input, X3 = user input (without needing to define an Array).
for i in range(3):
X[I want i counter to come after this X] = int(input(f"How many apple in basket number {i + 1}? "))