Question: Python problem Write a program that takes user input for students' total grades (total grade out 100) Using for loops, Functions, and Lists the program
Write a program that takes user input for students' total grades (total grade out 100) Using "for loops", "Functions", and "Lists" the program should store all of the grades in one list Use proper comments throughout your program and follow appropriate use of variables. The program should use the statistics library calculate and then display average median mode. standard deviation, minimum, and maximum grade for class, The printed results should be formatted and aligned The program should display relevant message to the user (such as "Enter total grade for student no. 1". The program should also control for invalid entries. The program should not allow for fewer than 5 students or greater than 35 students. Use functions to write this program. Please use comments throughout your code and evaluate user input to detect invalid entries Example of input screen: Enter number of students: 5 Enter Grade number 1: 55 Enter Grade number 2: 65 Enter Grade number 3: 70 Enter Grade number 4:90 Enter Grade number 5:85
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
