Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Code in python. class Evaluation: The number of points (int) with a text evaluation (str) gotten from a particular assignment In the code given
Code in python.
class Evaluation: "" "The number of points (int) with a text evaluation (str) gotten from a particular assignment""" In the code given above, implement the following tasks. 1. Implement class StudentRecord that stores a sequence of Evaluation instances. 2. Add support for comparing StudentRecord instances with ' == ' 3. Add support for adding Evaluation instance to a Studentrecord sequence. 4. Implement class PositiveEvaluation which inherits from Evaluation and ensures that the number of points is strictly positive (>0). Ensure this by raising an appropriate exception if not. Try to reuse as much code from StudentRecord as possible. StudentRecord example \>> StudentRecord([Evaluation(4, "Nice work")]) == StudentRecord() + Evaluation(4, "Nice work") TrueStep 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