A library wants to manage its collection of books and authors more efficiently. They would like to create a Python program to help with this task. The following requirements need to be implemented: Create an Author class with the attributes: name, dob (date of birth), and nationality. The class should have a __str__ method to represent the author in a user-friendly format. Create a Book class with the following attributes: title, author (an instance of the Author class), publication_date, and price. Also, include a class variable all_books that keeps a list of all book instances created. The Book class should have: A __str__ method to represent the book in a user-friendly format. A __eq__ method to compare two books. Two books are considered the same if they have the same title and author. A __lt__ method to compare two books based on their publication dates. A class method get_all_books that returns a list of all books in the library. A static method most_expensive_book that takes a list of book instances and returns the most expensive one. Finally, create a Library class that manages books and authors. This class should include the following: An attribute collection to store the books in the library. A method add_book to add a new book to the library. If the book already exists in the library (based on the __eq__ method from the Book class), it should not be added again. A method search_books_by_author to find all books written by a particular author. A method most_expensive_book that returns the most expensive book in the library's collection. Make sure to handle potential exceptions gracefully and provide informative error messages to the user. Your program should demonstrate the creation of multiple Author and Book objects, add these books to a Library object, and show usage of the search_books_by_author and most_expensive_book methods. Use the code provided in the first screenshot below to test your implementation. This code should go at the end of your program after you have satisfied all of the requirements above.

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter11: Inheritance And Composition
Section: Chapter Questions
Problem 5PE: Using classes, design an online address book to keep track of the names, addresses, phone numbers,...
icon
Related questions
Question
  1. A library wants to manage its collection of books and authors more efficiently. They would like to create a Python program to help with this task. The following requirements need to be implemented:
  1. Create an Author class with the attributes: name, dob (date of birth), and nationality. The class should have a __str__ method to represent the author in a user-friendly format.
  2. Create a Book class with the following attributes: title, author (an instance of the Author class), publication_date, and price. Also, include a class variable all_books that keeps a list of all book instances created.
    The Book class should have:
  1. A __str__ method to represent the book in a user-friendly format.
  2. A __eq__ method to compare two books. Two books are considered the same if they have the same title and author.
  3. A __lt__ method to compare two books based on their publication dates.
  4. A class method get_all_books that returns a list of all books in the library.
  5. A static method most_expensive_book that takes a list of book instances and returns the most expensive one.
  1. Finally, create a Library class that manages books and authors. This class should include the following:
  1. An attribute collection to store the books in the library.
  2. A method add_book to add a new book to the library. If the book already exists in the library (based on the __eq__ method from the Book class), it should not be added again.
  3. A method search_books_by_author to find all books written by a particular author.
  4. A method most_expensive_book that returns the most expensive book in the library's collection.
  1. Make sure to handle potential exceptions gracefully and provide informative error messages to the user.
  2. Your program should demonstrate the creation of multiple Author and Book objects, add these books to a Library object, and show usage of the search_books_by_author and most_expensive_book methods. Use the code provided in the first screenshot below to test your implementation. This code should go at the end of your program after you have satisfied all of the requirements above.

 

 

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 4 steps with 4 images

Blurred answer
Knowledge Booster
Software Development
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT