Posts

Showing posts from August 19, 2021

Online Library system | Made with python

Online Library system Code -- ------------------------------- import time def getdate():     return time.asctime() class Library:     # list_of_books = ["S.Sc. All in one", "Maths R.D. Sharma", "D.K.", "Maths N.C.E.R.T."]     def __init__(self, book_list, library_name):         self.list_of_books = book_list         self.library_name = library_name     def display_book(self):         print("Displaying...")         time.sleep(1)         return f"{self.list_of_books}\n"     def lend_book(self):         name = input("Enter your name: ")         name_of_book = input("Enter the name of book which you want to borrow: ")         if name_of_book not in self.list_of_books:             print("Book not available !! or incorrect book name entered !!")   ...