Library Management Software using Python This is the basic python classes and objects project which is used to manage library data . In this software you can declare a library and books present in it and it offers you following options You can see all the books available for rent. You can update the library with new books,remove the books This software can tell you which student has issued which books from library This will inform you if the book you want to let is not in library. If you want to know which person has taken a particular book then you have simply to enter the name of book and this programme will simply tell you name of person. Code for the programme ********************************************* class library : def __init__ ( self ,list_of_books,library_name): self .list_of_books = list_of_books self .name_of_library = library_name self .book_lender = {} def display_book ( self ): """Function for displaying books...
Comments
Post a Comment