
Finish the and make sure the first two methods work (will check everyone individually at the start of class
Try the third method. I would like it if it works, but as long as you attempt it, you are good
def find_teachers_by_name(self):
# an input to ask for what teacher you are looking for (by name)
# use an if statement to check if it is in the keys
# if it is print the info
pass
def list_teachers(self):
# for loop looping the values of the dictionary and using that method
# in teacher.py
pass
def find_teacher_by_subject(self):
# ask for which subject you want to search for
# Afterwards, seach through all the teachers for all teachers with that subject
# print their info
# note you need a for loop for this
pass