From the Student Grade Report assignment, write only the fun…
From the Student Grade Report assignment, write only the function grade_student students = {‘arnold’: { ‘Name’: ‘Ginny’, ‘Scores’: [90.0, 88.0, 95.0], ‘Grade’: 91.0 }} Function Description: grade_student: this method takes a dictionary representing a single student as a parameter then calculates that student’s average grade. This grade should then be stored in the given dictionary. The method has no return value (you can use Python Sandbox)
Read Details