#Jonathan Hudson #Student Number 12347890 #Date: 2020-08-26 #Lecture Practice # # Compute the median of a list of numbers entered by the user # # Start with an empty list values = [] # Keep reading values until the user enters a blank line line = input("Enter a number (blank line to quit): ") while line != "": # Convert the entered string into a number num = float(line) # Add the number to the end of the list values.append(num) # Read the next value from the user line = input("Enter a number (blank line to quit): ") # Display all of the values read from the user print(values)