In Python I would like to take a numerical value input and put it into a range. The goal is to iterate a question multiple times based on the number entered in the original input. What confuses me is that the the original input value changes so I don’t know how to make the range argument value change with original Input.
Number =input(“enter a number”)
for I in range(10):
Color=input(“enter an color”) #this input is iterated multiple times based on the number input. I dont know how make range change it’s value.