Question: Python Paragraph 2. Python Programming for Grade Calculation Given different scored marks of students. We need to find grades. The test score is an average


Python
Paragraph 2. Python Programming for Grade Calculation Given different scored marks of students. We need to find grades. The test score is an average of the respective marks scored in assignments, tests and lab-works. The final test score is assigned using below formula. 10 % of marks scored from submission of Assignments 70 % of marks scored from Test 20 % of marks scored in Lab-works Grade will be calculated according to: 1. score>- 90:"A" 2. score80 "B" 3. score 70:"C" 4. score 0"D" Also, calculate the total class average and letter grade of class. Your Python Programming: The program shall have the following features: 1. Create a student's dictionary that consists of the student name, assignment scores, test scores, and lab scores as below: Jack - {"name": "Jack Thomas", "assignment": [90, 60, 80, 70], "test": [78, 90], "lab": [68, 84] 2. Define a function to calculate average 3. Define a function to calculate the total average 4. Determine the letter grade of each student 5. Print the student's output as below: Jack Thomas The average score of Jack Thomas is: Letter grade of Jack Thomas is
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
