Question: Create a python application that will process student test scores. 89 77 92 69 87 62 55 78 31 90 Write an application that will
Create a python application that will process student test scores.
89
77
92
69
87
62
55
78
31
90
Write an application that will
1. open the file
2. read in the scores
3. if a score is 70 or higher, add 1 to the total of passing scores
4. if a score is less than 70, add 1 to the total number of failing scores
5. Print out the total number of passing and failing scores, and the overall average. It should look something like this (your numbers will be different):
Number failed: 4
Number passed: 6
Class average: 78.2
First make a flowchart then write the python code.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
