Question: Write a program that allows you to do the following five operations: 1
ID: 3619723 • Letter: Q
Question
Question: Write a program that allows you to do the following five operations:1. Prompt the user to input a list of numbers (Hint: be sure to have a way for the user to indicate that they are done finished providing the list of numbers)
2. Open a file that contains a list of numbers
3. Compute the average, statistical median, and mode of the list of numbers
4. Store your answers in another file
5. Asks the user whether they want to see the answers and if the answer is yes, opens the file and displays the numbers
Implement this program in the Python-IDLE and run and debug it.
After you have completed the program, save it to a Python file.