Question: ### Programming Assignment ### # Complete the calc_average () and determine_grade () functions # Compare with the expected result given in the assignment description
### Programming Assignment ### # Complete the calc_average () and determine_grade () functions # Compare with the expected result given in the assignment description # IMPORTANT: Before you submit, make sure your program produces the expected result # as shown in the assignment description # Do NOT change the function header calc_average() def calc_average(): gradestoavg [] total = 0 for i in range (8): gradestoavg.append(int (input("Please enter score #{}:".format(i + 1)))) total + gradestoavg[i] avg = return int (avg) def determine_grade (score): if score >= 90 and score
Step by Step Solution
3.55 Rating (155 Votes )
There are 3 Steps involved in it
Heres the corrected version of the code def calcaverage gradestoavg total 0 for i in range8 grad... View full answer
Get step-by-step solutions from verified subject matter experts
