Question: Write a program using Python that will calculate some statistics about a series on numbers entered by the user. Create an application that will calculate
Write a program using Python that will calculate some statistics about a series on numbers entered by the user.

Create an application that will calculate some statistics about a series on numbers entered by the user. - Prompt user for N numbers - Calculate and display the following Mean Median Mode Min Max You must create your own algorithms for these statistics. You must not use any aggregate libraries or functions. For example: - ADT's like the List object has a sort method. One could sort the list and select List[0] as the min and List[length()-1] as the max. This is not allowed for this assignment. - Python as a Math and other stat libraries that have methods for these. You are not allowed to import and use them - Python has aggregate functions that are standard. You are not allowed to use them in this assignment
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
