-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbook_app_oop.py
56 lines (47 loc) · 1.68 KB
/
book_app_oop.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
class Library:
def __init__(self, list_of_books):
self.available_books = list_of_books
def display_available_books(self):
print()
print("Available Books: ")
for book in self.available_books:
print(book)
def lend_book(self, requested_book):
if requested_book in self.available_books:
print("You have now borrowed the book.")
self.available_books.remove(requested_book)
else:
print("Sorry, the book is not available in qur list.")
def add_book(self, returned_book):
self.available_books.append(returned_book)
print("You habe returned the book. Thank you.")
class Customer:
def request_book(self):
print("Enter the name of a book you would like to borrow: ")
self.book = input()
return self.book
def return_book(self):
print("Enter the name of the book which you are returning: ")
self.book = input()
return self.book
library = Library(
['Thing and Grow Rich', 'Who will Cry When You Die', 'For One More Day'])
customer = Customer()
while True:
print("Enter 1 to dosplay the available books.")
print("Enter 2 to request for a book.")
print("Enter 3 to return a book.")
print("Enter 4 to exit.")
user_choice = int(input())
if user_choice is 1:
library.display_available_books()
elif user_choice is 2:
requested_book = customer.request_book()
library.lend_book(requested_book)
elif user_choice is 3:
return_book = customer.return_book()
library.add_book(returned_book)
elif user_choice is 4:
quit()
else:
print("Invalid Input!")