Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Data Analysis And Decision Making

Authors: Christian Albright, Wayne Winston, Christopher Zappe

4th Edition

538476125, 978-0538476126

More Books

Students also viewed these Algorithms questions