- This event has passed.
7 PM – Python OOP
October 22, 2021 @ 7:00 pm - 8:00 pm
Homework:
- Inside StudentApplication project, create staff.py
- Inside staff.py, create class Staff with the following attributes: name, role, age, phone.
- Inside StudentApplication class, add 3 new features, use dictionary don’t use List.
- 9. Add new Staff
- 10. Find Staff using dictionary.
- 11. List all Staffs. If you don’t know how to do this, look at how we can use for loop to go through each element inside a dictionary in Aug20_dictionary.py.