How To Create A Table in Python
问题 I've posted this before, but I'm reposting it with more detailed information. This is my assignment: And, so far, this is my code: # Define a function that caculates average test scores def calculate_average(score1, score2, score3, score4, score5): total = score1 + score2 + score3 + score4 + score5 average = total % 5 print(average) # Define a function that determines a letter grade # Based on the given score def determine_grade(score): if score < 60: print 'F' elif score => 60 or score <= 69