thon Geography Grades 2 Make a copy of your program for the problem Geography Grades 1 and change the code in such a way that your program no longer prints the average grade, but the final grade. The final grade is calculated by rounding the average grade to the nearest multiple of a half. So, for example, a 7.2 becomes a 7.0 and 7.3 becomes a 7.5. If this calculation results in a 5.5, the final grade becomes a 6.0. Your assignment is to make the report for the geography course of group 2b, that, with the same example input as for the problem Geography Grades 1, should look like this:
python
Geography Grades 2
Make a copy of your
longer prints the average grade, but the final grade.
The final grade is calculated by rounding the average grade to the nearest multiple of a half. So, for example, a 7.2
becomes a 7.0 and 7.3 becomes a 7.5. If this calculation results in a 5.5, the final grade becomes a 6.0.
Your assignment is to make the report for the geography course of group 2b, that, with the same example input as for
the problem Geography Grades 1, should look like this:
Report for group 2b
Anne Adema has a final grade of 6.0
Bea de Bruin has a final grade of 7.0
Chris Cohen has a final grade of 7.5
Dirk Dirksen has a final grade of 4.5
End of report
"""
Step by step
Solved in 2 steps