- This event has passed.
7:00 PM : Python OOP – Joshua
September 16, 2025 @ 7:00 pm - 8:00 pm
Today we did
- reviewed how to use dictionary and classes together
- demo a python game
- explain the structure of a basic application in a OOP way
Homework
Complete the following functions, and test it to make sure it works
def add_student(self):
# Step1 gather info
# basically, for each class variable (i.e NAme age and grade of your student)
# use input to gather that information
# Step 2, create a student with that information
#Step 3, add it to the list we created in our __init__
pass
def list_students_1(self):
# use for a loop, to print every students name, age ,and grade
pass