Home /
Expert Answers /
Computer Science /
python-please-part-2-simplified-gpa-calculator-6-points-complete-the-function-compute-gpa-which-pa364
(Solved): python please
Part 2: Simplified GPA Calculator (6 points) Complete the function compute_gpa, which ...
python please
Part 2: Simplified GPA Calculator (6 points) Complete the function compute_gpa, which computes and returns a student's grade point average. The function takes a single argument, grades, which is a list of strings consisting only of the letters A, B and C. Recall that an A is worth 4 grade points, \( B \) is worth 3 , and \( \mathrm{C} \) is worth 2. Assume that no other grades are present in the list and that every course is worth the same number of credits. Note: loops are not needed to solve this problem!