You are tasked with building a simple library system. The system should allow the creation and management of books within a library.
Implement two classes: Book
and Library
.
The Book
class should have the following attributes:
title should be Harry Potter
(string)author is J.K. Rowling
(string)isbn is9780590353427
(string)The Book
class should also have a method display_info
to display information about the book.
The Library
class should have the following attributes:
name is Central Library
(string)books
(list) - to store instances of Book
The Library
class should have methods to: