Question
PLEASE DO IN PYTHON: Write a program that asks the user to enter a student's name and 8 numeric assignment scores (out of 100 for
PLEASE DO IN PYTHON: Write a program that asks the user to enter a student's name and 8 numeric assignment scores (out of 100 for each assignment). The program should output the students name, a letter grade for each assignment score, and cumulative average for all the assignments. Please note, there are 12 students in the class so your program will need to be able to either accept data for 12 students or loop 12 times in order to process all the students in the class. Write the following functions in the program: calc_average - this function should accept 8 assignment scores as arguments and return the average of the scores determine_grade - this function should accept an assignment score as an argument and return a letter grade for the score based on the following grading scale: 90-100 A 80-89 B 70-79 C 60-69 D Below 60 F Data for the program: Lucy Miller 45 69 70 66 87 82 75 73
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