Question: Create a student class Student Grade Characteristics: * Name Age * Lab Score * Midterm Score * Quiz Score * Final Exam Score Create

Create a student class
Student Grade Characteristics: * Name " Age * Lab Score * Midterm Score * Quiz Score * Final Exam Score
Create a Python course class.
Characteristics of the course class: * Limit of the number of students per course: 15* Students added to the course:
{
Name: (lab score, midterm score, quiz score, final score),
....
....
}
eg:students{
"ana" :[16,7,11,30]
}
course methods
*Add students
Student_1=("ana":,16,7,11,301)
eg: Python_course.add_student (student_1)--> "student added!"
*Count and print the total score of the selected students
eg: Python_course.score_type (ana)-->64
*Print total score of selected student by level: A, B, C, D, E, F
eg: Python_course.score_type (ana)-->"D"
A =90 and above
B =80 to 89
C =70 to 79
D =60 to 69
E =50 to 59
F = below 50
Students average score : calculate the grade point average of the total students added
eg:Python_course.average_score("ana")-->56.4
create student objects based on the data
name:lab,quiz midterm,finals
ana:[1671130]
data:[1211226]
neno:[101130]
luka:[20830]
Print each student's total score and type of score earned. Print the result in order first score, then score type thenscoreaverage
Create the given classes with their attributes and methods (1 point).
Add a student (1 point)
Calculating and printing the total score of the selected student (1 point)
Print the total score of the selected student by level (1 point)
Calculating the average of the total points of the added students(1point)

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!