Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Solve with Pycharm: Find the Maximum, Minimum, Mean, Median, Mode of a list, tuple or matrix. You cannot python packages other than random, math and

Solve with Pycharm:
Find the Maximum, Minimum, Mean, Median, Mode of a list, tuple or matrix. You cannot python packages other than random, math and copy.
Do the tuple of 100 numbers only (no numpy or statistics)
Thanks
image text in transcribed
(30 pts) Create a Python program that finds the maximum, minimum, mean, mode, and median of a list, tuple or matrix and prints the results in a formatted output like: A is a matrix: Maximum =x Minimum =y Mean =z.zzz Mode =a Median =b A is a list: Maximum =x Minimum =y Mean =2.zzz Mode =a Median =b A is a tuple: Maximum =x Minimum =y Mean =z.zzz Mode =a Median =b Your program must consist of a function: def analyze (A) : where A is either a list, tuple or matrix and returns the results as a tuple (e.g., return ("tuple", max, min, mean, mode, med)), and a function def main (): that calls analyze with first a 1010 matrix of numbers, then a list of 100 numbers, and finally a tuple of 100 numbers. In each case, the numbers should be randomly chosen between 1 and 100 . You must also call main( like: if main()name= "_main_": \# prevents call to main if imported

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Systems A Practical Approach To Design Implementation And Management

Authors: THOMAS CONNOLLY

6th Edition

9353438918, 978-9353438913

More Books

Students also viewed these Databases questions