« All Events
5 PM – OOP Python – Nathaniel
August 14, 2021 @ 5:00 pm - 6:00 pm
Today We:
- Finished the SchoolApplication methods to handle the first 3 options of the menu (add, list, and find student)
Homework
- Create 3 new methods called add_teacher(), list_teacher(), and find_teacher()
- add_teacher() should ask the user to enter a teacher’s information and add it to the list of teachers in SchoolApplication
- list_teacher() should print the information of all the teachers in the list of teachers in SchoolApplication
- find_teacher() should print the teacher’s information if they are in the list, if they don’t exist then print “This teacher does not exist”
- Hint: These three methods are identical to the ones we have already created for the Student class.