Question: PYTHON QUESTION 10 Implement the following: a) Create a dictionary, grades, and initialize it with the following data: 'Jimmy': 66 'Jerry': 80 'Jacob': 71 'James':

PYTHONPYTHON QUESTION 10 Implement the following: a) Create a dictionary, grades, and

QUESTION 10 Implement the following: a) Create a dictionary, grades, and initialize it with the following data: 'Jimmy': 66 'Jerry': 80 'Jacob': 71 'James': 59 'Jenny': 90 b) Use a loop to print all items of the dictionary grades as follows: name receives grade A (if the value is 90 or above). name receives grade B (if the value is 80 or above). name receives grade C (if the value is 70 or above). name receives grade D (if the value is 60 or above). name receives grade F (if the value is below 60 ). Make sure to precisely match the output format below. Write your code in the ANSWER area provided below (must include comments if using code is not covered in the course). Example Output Jimmy receives grade D. Jerry receives grade B. Jacob receives grade C. James receives grade F. Jenny receives grade A

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!