A Python module for managing student grades.
calculate_average(scores)— returns the average of a list of scoresget_letter_grade(average)— returns A/B/C/D/F for a given averageis_passing(average)— returns True if the average is passingget_top_students(grade_dict, threshold)— returns students above thresholdformat_report(student, scores)— returns a formatted grade report string
pytest tests/