Today we did
- Started our school system
- practiced importing
- practiced setting up applications
Homework
Implement the following methods in your School System Application
def add_student(self):
# you should ask with three inputs in a row
# what is the students name
# what is the students age
# what is the students grade
# After getting these three pieces of info
# create a Student object with your Student Clas
# add it to the self.student_list
pass
def list_all_students(self):
# print the name,age,and grade of each person
# don't forget to add the code needed in the menu in the __init__
# and the application loop
pass