I want to create a python script which does various things with 6 inputs the user gives.
Short of typing,
x1=input("Enter data1")
...
x6=input("Enter data6")
is there anyway to define these variables via some sort of index? I don't know what the code would be, but it would have the effect of the following:
Let i range from 1 to 6. Let x_i=input("Enter Data_i")