-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathlibraryy.py
71 lines (57 loc) · 2.11 KB
/
libraryy.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
class Library:
def __init__(self, list, name):
self.bookslist = list
self.name = name
self.lendDict = {}
def displayBooks(self):
print(f"we have following books in our library:{self.name}")
for book in self.bookslist:
print(book)
def lendBook(self, user, book):
if book not in self.lendDict.keys():
self.lendDict.update({book: user})
print("lender-book database has been updated.you can take the book.")
else:
print(f"book is already being used by {self.lendDict[book]}")
def addBook(self, book):
self.bookslist.append(book)
print("book has been updated to the booklist.")
def returnBook(self, book):
self.lendDict.pop(book)
if __name__ == "__main__":
v1 = Library(['Python', 'C++', 'Java', 'DSA', 'HTMl'],'Code')
while (True):
print("WELCOME TO THE LIBRARY.ENTER YOUR CHOICE:")
print("1. Display books")
print("2. Lend a book")
print("3. Add a book")
print("4. Return a book")
print("5. Exit ")
user_choice = int(input("enter your choice:"))
if user_choice not in [1, 2, 3, 4, 5]:
print("Enter a valid option")
continue
if user_choice == 1:
v1.displayBooks()
elif user_choice == 2:
book = input("Enter the name of the book you want:")
user = input("Enter your name:")
v1.lendBook(user, book)
elif user_choice == 3:
book = input("Enter the book you want to add:")
v1.addBook(book)
elif user_choice == 4:
book = input("Enter the book you want to return:")
v1.returnBook(book)
elif user_choice == 5:
exit()
else:
print("Not a valid option")
print("Press 'q' to quit and 'c' to continue")
user_choice2 = ""
while (user_choice2 != "c" and user_choice2 != "q"):
user_choice2 = input()
if user_choice2 == "q":
exit()
elif user_choice2 == "c":
continue