« All Events
7 PM – Python OOP
October 15, 2021 @ 7:00 pm - 8:00 pm
Today We Do
- We continued with SchoolApplication by adding students_dictionary and teachers_dictionary.
- When we create a new student, we added newly Student object/class into students_dictionary.
Homework
- Now that we have added Student object/class into students_dictionary, you need to add code for 8. Find student using Dictionary . If you forgot how dictionary work, look at Aug20_Dictionary.py or Aug20_DictionaryHomework.py
- Since we created teachers_dictionary, when you create a new teacher, add the newly created Teacher object/class into teachers_dictionary.
- After you added Teacher object into teachers_dictionary, you need to add code for 7. Find teacher using Dictionary.