Reference no: EM132211275
Write a program that reads in numbers from the user.
Your program should be capable of tracking/calculating the minimum, maximum, total sum, and average of the numbers entered.
When the user enters "q", "Q", or "quit", the program should display the minimum, maximum, total sum, and average of the numbers entered before ending.
You can assume that the user will always enter either a number or one of the strings "q", "Q", or "quit".
You can also assume the user will always enter at least one number (i.e., they will not immediately choose to quit upon starting the program).
Save your Python program in a file called a2q3.py and add it to your submission zip file.