Question: python 3 PROBLEM 4: Write another program that prompts for a list of numbers as above and at the end prints out the minimum, maximum

python 3 python 3 PROBLEM 4: Write another program that prompts for a list

PROBLEM 4: Write another program that prompts for a list of numbers as above and at the end prints out the minimum, maximum and median of the numbers instead of the average. YOU ARE NOT ALLOWED TO USE THE MINIMUM, MAXIMUM or MEDIAN FUNCTIONS OF PYTHON FOR THIS ASSIGNMENT. You may use the Python sorted() function when calculating the median An example of output is the following Enter a number: 40 Enter a number: 50 Enter a number: twenty five Invalid input Enter a number: 70.8 Enter a number: done The minimum number is: 40 The maximum number is: 70.8 The median is 50 SOME HELPFUL INFORMATION: To create a new empty list call my list, simply write: my list=0 To add a new element (for example 3.14) to the list use the append as shown below: my list.append(3.14)

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!