« All Events
6:30 PM – Python OOP – Bill
January 3 @ 6:30 pm - 7:30 pm
Today We:
- Continued the School Application project
Your HW:
- Add to the menu:
self.menu = """
Please select one of the following
1. Add Student
2. List all students list
3. Find student using list
4. Find student using dictionary
5. Add Teacher
6. List all teachers
Enter your selection (Enter "exit" to quit):"""
- Create a new file called teacher.py
- Create a teacher class with the following attributes: name, age, subject
- Give it a get_info() method
- Do the add teacher and list all teachers functionality like we did for student