Question: In Python: create for loop using the student dictionary, request user input and change each student grade value: This is how it should look: Please
In Python: create for loop using the student dictionary, request user input and change each student grade value:
This is how it should look:
Please enter the new grade for John:
Please enter the new grade for Mike:
Please enter the new grade for Sarah:
John = 95, Mike = 80, and Sarah = 90.
calculate and display the name and the value of the person with the lowest grade, calculate and display the name and value of the person with the highest grade, and calculate the average.
student = {"John": 0, "Mike": 0, "Sarah": 0 }
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
