Question
def average_grade(adict): Returns the average grade among all students. The dictionary adict has netids for keys and numbers 0-100 for values. These represent
def average_grade(adict):
"""
Returns the average grade among all students.
The dictionary adict has netids for keys and numbers 0-100 for values.
These represent the grades that the students got on the exam. This function
averages those grades and returns a value.
Examples:
average_grade({'wmw2' : 55, 'abc3' : 90, 'jms45': 86}) returns (55+90+86)/3 = 77
average_grade({'wmw2' : 55}) returns 55
average_grade({}) returns 0
Parameter adict: the dictionary of grades
Precondition: adict is dictionary mapping strings to ints
"""
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get StartedRecommended Textbook for
Data Analysis And Decision Making
Authors: Christian Albright, Wayne Winston, Christopher Zappe
4th Edition
538476125, 978-0538476126
Students also viewed these Algorithms questions
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
View Answer in SolutionInn App