Arrange the code to compute the total score for a student. Consider a comma-separated file that contains student names and scores such as the following:
A) total_score = sum(score for name, score in student_scores.items())
B) total_score = sum(score for name, score in student_scores)
C) total_score = sum(student_scores.values())
D) total_score = sum(student_scores)