Question
in python. Given the following list of student test scores, apply a class curve to each score. The class curve is as follows: 90 or
in python. Given the following list of student test scores, apply a class "curve" to each score. The class curve is as follows: 90 or above: no curve 80 to 90: +2 points 70 to 80: +5 points Lower than 70: +8 points Use the below test scores list: grades = [93, 74, 66, 98, 34, 75, 79, 83, 84, 91, 12, 69, 72] Pseudo code: for each score in list, If grade is greater than or equal to 90, move on to next score. Else if score is greater or equal to 80 but less than 90, add 2 points. Else if score is greater or equal to 70 but less than 80, add 5 points. Else, add 8 points Print out the new grades.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started