I have many, many numbers to write and it is simply not efficient to write out...
a = float(input("Enter the first number: "))
b = float(input("Enter the second number: "))
c = float(input("Enter the third number: "))
...when you have a thousand numbers. So how can I use the range feature maybe to get many numbers from a single input line and then also calculate the mean or average of all of the inputs?