- This event has passed.
2 PM – Python Object Oriented Programming – Sebastian
July 15, 2023 @ 2:00 pm - 3:00 pm
Today We Did
- Review of dictionaries and OOP
- Began SchoolSystem program
- In case you need anything, feel free to email me at sebastian@ayclogic.com
Homework
- Create a new folder in our Google Drive called “SchoolSystem” which you can submit all project files into each time you turn in homework.
- Homework: Create the list_students_list() and list_students_list() as we discussed in class. Outline:def list_students_list(self):
“””
Tell user what you’re doing
Loop through each student in student attribute list
Print information about each student (name, age, grade)
“””
passdef list_students_dict(self):
“””
Same as list_students_list, but with dictionary
Should we use .keys(), values(), or .items() for the dictionary?
“””
pass