-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathbook.py
32 lines (28 loc) · 905 Bytes
/
book.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
# adding and displaying details of a book using class
class Book:
def __init__(self):
self.title = ""
self.author = ""
self.publisher = ""
self.ISBN = 0
def read(self):
self.title = input("enter the title: ")
self.author = input("Enter the author: ")
self.publisher = input("Enter the publisher: ")
self.ISBN = int(input("Enter the number: "))
def display(self):
print("The title of the books is: ", self.title)
print("The author of the book is: ", self.author)
print("The publisher of the book is: ", self.publisher)
print("The ISBN number of the book is: ", self.ISBN)
z = Book()
x = []
while True:
y = input("Do you want to enter in the details?(y/n): ")
if y == "y":
z.read()
x.append(z)
elif y == "n":
for j in x:
j.display()
break