Glossary

Book class:

Attributes: `title`, `author`, `isbn`, `checked_out` (bool), `due_date`, `genre` - Methods: `check_out(due_date)`, `return_book()`, `is_overdue()`, `__str__()`, `__eq__()` (by ISBN), `__repr__()`

Learn More

Related Terms