te a program that analyzes grades. The file grades.txt contains the student ID number, the section number, and the final letter grade for a course separated by a tab. Your program should calculate the average score for each distinct section. You can convert each letter grade to a number using the following table: • A == 100 • B == 89
Solve in Python
It won't let me send an attached file so I put a screenshot hopefully that shouldn't matter
I'll make the txt file myself but could you provide the input needed to complete the lab
For this lab, you will write a program that analyzes grades. The file grades.txt
contains the student ID number, the section number, and
the final letter grade for a course separated by a tab. Your program should calculate the
average score for each distinct section.
You can convert each letter grade to a number using the following table:
• A == 100
• B == 89
• C == 79
• D == 74
• F == 69
Remember, each section needs to have its own separate average.
Provide screenshots of Input and Output
Trending now
This is a popular solution!
Step by step
Solved in 4 steps with 2 images