Question: Can somebody help me? Using python 3.6 to solve this problem. Please don't use function. 1. Specification: Write a program that asks the user for

Can somebody help me? Using python 3.6 to solve this problem. Please don't use function.
1. Specification: Write a program that asks the user for a student name and asks for grades until the user enters a non-number input, it should then ask if the user wants to enter another student, and keep doing the process until the user stops adding students. The student's must be stored in a dictionary with their names as the keys and grades in a list. The program should then iterate over the dictionary elements producing the min, max, and mean of their grades. Example Execution: Enter a student name: "Cody Enter a Grade for Cody: 90 Enter a Grade for Cody: 71 Enter a Grade for Cody: 88 Enter a Grade for Cody: done Do vou want to add another student: ves Enter a student name "Jim" Enter a Grade for Jim: 85 Enter a Grade for Jim: 89 Enter a Grade for Jim: no Do you want to add another student: No Student Stats: Cody (71-90) 83 Jim (85-89) 87
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
