use lambda and reduce functions to find the average grade of all students.

Given a list of dictionaries containing information about students (name, age, grade), use lambda and reduce functions to find the average grade of all students.
 [ {"name": "John", "age": 20, "grade": 85}, {"name": "Jane", "age": 21, "grade": 90}, {"name": "Bob", "age": 19, "grade": 75}, {"name": "Alice", "age": 22, "grade": 95} ]
Total : 0 Discussion
Login