« All Events
7:00 PM – Python OOP – Juan
November 6, 2023 @ 7:00 pm - 8:00 pm
Today We Did
- Reviewed last week’s homework and finished the School System project
- Began working on the Library System project
- Created the application loop
Homework
- Name your file Nov13_LibrarySystem.py and do:
- Create a class
book
in a separate file called book.py
with at least 5 attributes - Import the
book
class into your file - Finish the
add_book()
function:- Get input for the 5 attributes
- Create an instance of book and add it to the dictionary
- call it in your
application_loop()