This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Library Management System | |
========================= | |
Objective: | |
Create a Python program to manage a small library. Users can add books, remove books, and query the library. | |
Functionalities: | |
- Add a Book: Users can add a book by entering its details in the format TITLE,AUTHOR,RELEASE_YEAR. | |
- Ensure that the TITLE and AUTHOR are not empty | |
- Ensure that the RELEASE_YEAR is between 0 and the current year. |
OlderNewer