Exercise: Extracting Toppers From a Student Record
Let’s try to extract the students with the highest scores from a collection of student records.
We'll cover the following...
Problem statement
You have been provided with different grades
lists which are all lists of dictionaries, containing the name of the student and the grade percent that they achieved. Here’s an example list:
grades = [
{"name": "Mary","percent": 90},
{"name":
...