Write Program Calculate Student S Average Score Several Tests Program Ask Number Students Q43784768
Write a program that will calculate each student’s average scoreover several tests. The program will ask for the number ofstudents, and the number of scores per student. Then, for eachstudent, it will ask for all test results and display the average.The output should look similar to what is shown below (sample userinput is shown in bold) ( write by python andScreenshot it for me , thank)
How many students do you have?
3
How many test scores per student?
3
Student number 1
—————–
Enter test number 1:
100
Enter test number 2:
95
Enter test number 3:
90
The average for student number 1 is 95.0
Student number 2
—————–
Enter test number 1:
80
Enter test number 2:
81
Enter test number 3:
82
The average for student number 2 is 81.0
Student number 3
—————–
Enter test number 1:
75
Enter test number 2:
85
Enter test number 3:
80
The average for student number 3 is 80.0
Expert Answer
Answer to Write a program that will calculate each student’s average score over several tests. The program will ask for the numb…
OR