Python program:
Write a program that reads a text file named test_scores.txt to
read the name of the student and his/her scores for 3 tests. The
program should display class average for first test (average of
scores of test 1) and average (average of 3 tests) for each
student.
Expected Output:
['John', '25', '26', '27']
['Michael', '24', '28', '29']
['Adelle', '23', '24', '20']
[['John', '25', '26', '27'], ['Michael', '24', '28', '29'],
['Adelle', '23', '24', '20']]
Class average for test 1...