Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Write the PYTHON CODE You will implement a program which asks the user to enter scores of different courses in different semesters. The program should
Write the PYTHON CODE
You will implement a program which asks the user to enter scores of different courses in different semesters. The program should read the input and output some simple statistics 1. An example input string by the user is given below. Fal12016-coursel:82, course2:80,course3:85;Spring2018- course4:82;Fall2018-course5:85, course6:50, course7:78 Info from different semesters are separated by a ";", courses in each semester are separated by a,and score and corresponding course is separated by a, information of each courses is followed by aafter the semester name. Write python program that accept the input string from the user and prints out the following: Average score made by the student in each semester Letter grade for each course for each semester, average GPA for the student in each semester and average GPA for the student across all the semesters. In each semester, print the course (along with the score) in which the student got the highest score. Assume in each semester, the student doesn't get the same score in two courses. Here, you are encouraged to solve the problem by implementing different functions. The type d are left to your discretion. Letter grade criteria: Letter grade Score criteria 90 -80 and 70 andStep 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