Answered You can hire a professional tutor to get the answer.
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...
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)
I'm not sure what I am missing or doing wrong. Please help!