This python program will be for important statistics for


Problem: This Python program will be for important statistics for the grades in a class. The program will utilize a loop to read five floating-point grades from user input. 

Ask the user to enter the values, then print the following data:

  • Average
  • Maximum
  • Minimum

Code I have written is below:

grades = float(input('Enter Grades:n')

total = sum(grades)

average = total/float(len(grades))

high = max(grade)

low = min(grade)

Solution Preview :

Prepared by a verified Expert
Basic Computer Science: This python program will be for important statistics for
Reference No:- TGS02694514

Now Priced at $10 (50% Discount)

Recommended (92%)

Rated (4.4/5)