
Today we did
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