Question: Python - Object Oriented Programming Develop a program to maintain a list of homework assignments When an assignment is assigned, add it to the list

Python - Object Oriented Programming Develop a program to maintain a list of homework assignments When an assignment is assigned, add it to the list with a due date, and when it is completed, remove it. Your program should provide the following services: a. Add a new assignment b. Remove an assignment c. Provide a list of the assignments in the order they were assigned d. Provide a list of the assignments in the order they are due class Homework def init-(self): self.assignment-list = [ ]
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
