PYTHON-
In this programming assignment, you need use OOP to develop aCourse Registration application (CRA) toallow students register courses.
In CRA, each student selects courses from a course list:courseList = [110, 213, 315, 316, 412, 121, 223, 326, 328, 422,136, 238, 335, 336, 432, 140, 243, 345, 346, 448, 150, 253, 355,356, 452]
The course prerequisites are given below:
110 > 213 (i.e., 110 is the prerequisite for 213)
316 > 412
223 > 326
328 > 422
136 > 238
243 > 345
253 > 355
356 > 452
In this programming assignment, you need do the following:
- Define a Person class
- Define a Student class inherited from Person
- Define an Advisor class
OROR