Ratings list | Computer Science homework help

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

Don't use plagiarized sources. Get Your Custom Essay on
Need an answer from similar question? You have just landed to the most confidential, trustful essay writing service to order the paper from.
Just from $11/Page
Order Now

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.