Question: Exercise 7: Rewrite the grade program from the previous chapter usinga function called computegrade that takes a score as its parameter andreturns a grade as
Exercise 7: Rewrite the grade program from the previous chapter usinga function called computegrade that takes a score as its parameter andreturns a grade as a string.
Score Grade
>= 0.9 A
>= 0.8 B
>= 0.7 C
>= 0.6 D
< 0.6 F
Enter score: 0.95 A
Enter score: 0.75 C
Enter score: 0.5 F
Run the program repeatedly to test the various different values for input.
Using Python
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
