Write the Raptor Flowchart and Python code (both modular) forthe following programming problem:
Write a modular program that will allow a teacher to calculate theaverage test score for a certain number of students. The teachercan enter the number of students who took the test, and then thescore for each student. Your program will then calculate theaverage score and print out the results. Your program must use theappropriate loop, modules, and run multiple times for differentsets of test scores.
Your sample output might look as follows:
How many students took the test: 9
Enter their score: 98
Enter their score: 78
Enter their score: 99
Enter their score: 92
Enter their score: 87
Enter their score: 100
Enter their score: 88
Enter their score: 81
Enter their score: 79
The average test score is 89
Do you want to end the program? (Enter no to process a new set ofscores): yes