Ask Question
6 February, 18:08

Suppose we have a dictionary called grades as shown below:

grades = {"John": [87,90,86.8], "Mary": [78, 81.5, 88.6], ...}

The keys are names of students (assume that the names are unique) and the value associated with each is a list of three exam scores. Write a program that prints a report card in the following format:

John 87.93 B

Mary 82.70 B

Assume that an average of 90 and above is an "A", 80 to 89.999 is a "B", 70 to 79.9999 is a "C" and so on. Anything below 60 is an "F"

+3
Know the Answer?
Not Sure About the Answer?
Find an answer to your question ✅ “Suppose we have a dictionary called grades as shown below: grades = {"John": [87,90,86.8], "Mary": [78, 81.5, 88.6], ...} The keys are ...” in 📘 Computers and Technology if you're in doubt about the correctness of the answers or there's no answer, then try to use the smart search and find answers to the similar questions.
Search for Other Answers