I am working on the following, I created a dictionary object as follows and I need to define 3 different functions. A function for maxScore, a function for minScore, and function for average as well as print all 3.
My dictionary object code is as follows
scores = {}
scores['Andy'] = 78
scores['Bill'] = 82
scores['Cindy'] = 94
scores['Dave'] = 77
scores['Emily'] = 82
scores['Frank'] = 94
scores['Gene'] = 87
I can't seem to define the function(s) correctly for it to print the results.