use the for statement to iterate on the ratings list and subtract each rating score by 3.5, then store the subtracted value inside a new list.
use this list of rating scores: 2,2,3,3,3,4,4,4,5,5
Pseudocode:
Set the variable with the list of rating scores
Initialize a list variable named mean deviations
Use the for statement to iterate through the rating scores
Subtract the score by 3.5 then store it in mean deviations.
Display the mean deviations list.
2) Write a program that determines the value of the coins in a jar and prints the total in dollars
and cents. Read integer values that represent the number of quarters, dimes, nickels, and
pennies. This program will require user input, output needs to have the correct currency
format without using the currency formatting code.