-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathLibrary Management.py
More file actions
32 lines (29 loc) · 941 Bytes
/
Library Management.py
File metadata and controls
32 lines (29 loc) · 941 Bytes
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
#Project on Library Management System
#--------------------------------------------------------------------------------
#MODULE : LIBRARY MANAGEMENT
import Database
import Menulib
import Book
import Issue
Database.DatabaseCreate()
Database.TablesCreate()
while True:
Book.clrscreen()
print("\t\t\t Library Management\n")
print("=====================================================================")
print("1. Book Management")
print("2. Members Management")
print("3. Issue/Return Book")
print("4. Exit")
choice = int(input("Enter Choice between 1 to 4 -------> : "))
if choice == 1:
Menulib.Menubook()
elif choice == 2:
Menulib.MenuMember()
elif choice == 3:
Menulib.MenuIssueReturn()
elif choice == 4:
break
else:
print("Wrong Choice.....Enter Your Choice again")
x = input("Press any key to continue")