Question: Finding the min, max and average of 4 (Python) Write a program that takes 4 scores (integers as input), and uses a list to output

Finding the min, max and average of 4 (Python)

Write a program that takes 4 scores (integers as input), and uses a list to output the min, max, and average of these four exams.

the output is:

Minimum Score: 79 Maximum Score: 95 Average Score: 87 

Note: For output, round the average to the nearest integer.

Finding the min, max and average of 4 (Python) Write a program

LAB ACTIVITY 3.3.1: LAB: Finding the min, max and average of 4 exams 0/3 main.py Load default template... 3 4 1 exams = [0, 0, 0, 0] 2 exams[e] = int(input("Enter Examl Score: ")) Type your code here." 5 print("Minimum Exam Score: {:.8f}".Format(min(exams)) Type your code here." 6

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!