Alu Yumnam
Alu Yumnam
Library
management
Teacher’s signature
ACKNOWLEDGEMENT
4. The system saves time for both the user and the librarian. With just a click the
user can search for the books available in the library. The librarian can answer
queries with ease regarding the availability of books.
6. Stock checking and verification of books in the library can be done within a few
hours. The automated system saves a considerable amount of time as opposed to the
manual system.
7. The library management system software makes the library a smart one by
organizing the books systematically by author, title and subject. This enables users
to search for books quickly and effortlessly.
9. In this digital age a web-based library management system would be ideal for
students who can access the library’s database on their smartphones.
10. The main objective of the Project of Library Management System is to manage
the details of users as well as books.
11. It also manages all the information about Student, Address of Member as well as
Student
PYTHON
CODE
class Library:
def init(self):
self.books = {}
if self.books.get(title, 0) > 0:
self.books[title] -= 1
else:
self.books[title] = self.books.get(title, 0) + 1
def display_books(self):
print("\nAvailable Books:")
# Menu-based interaction
def main():
library = Library()
while True:
print("5. Exit")
if choice == '1':
library.add_book(title, copies)
library.issue_book(title)
library.return_book(title)
library.display_books()
break
else:
main()
OUTPUT
Choice 1:
Choice 2:
Choice 3 and 4:
Choice 4 and 5:
CONCLUSION: