""" This Python program would analyze example of students' quiz scores """ """ The students' name and quiz score: Hero: 81 Dunn: 77 Sue: 95 Kate: 81 Klein: 73 Cao: 66 """ # 1. Use a diction variable dic_student to store all students' information # 2. Use a list variable list_student to store all students' information # 3. Count how many students' grade is greater than 80 from dic_student # 4. Count how many students' grade is greater than 80 from list # 5. Use counter function to analyze which score is most frequent