Sample Computer Project File
Sample Computer Project File
Sample Computer Project File
SESSION 2023-24
COMPUTER SCIENCE (083) XII
---------------------------------------------------------------
A PROJECT REPORT ON
_______________________________________
Roll No:
CERTIFICATE
Ms. _________
[PGT CS / IP]
ACKNOWLEDGEMENT
I would like to express my special thanks of gratitude to my
teacher Ms. __________ as well as our principal Mr. Sourabh
Kashyap who gave me the golden opportunity to do this
wonderful project on the topic “____________ MANAGEMENT
SYSTEM ”which also helped me in doing a lot of Research and
I came to know about so many new things I am really thankful
to them.
Secondly I would also like to thank my parents and friends who
helped me a lot in finalizing this project within the limitedtime
frame.
Your name
XII-______
SYSTEM SPECIFICATIONS
Hardware configuration:
Software configuration:-
cursor = db.cursor()
cursor.execute(
"CREATE TABLE IF NOT EXISTS books ( bname varchar(50), bcode varchar(10),no_of_books int,subject
varchar(50))"
)
cursor.execute(
"CREATE TABLE IF NOT EXISTS issue ( name varchar(50), regno varchar(10),bcode int,issue_date date)"
)
cursor.execute(
"CREATE TABLE IF NOT EXISTS submit ( name varchar(50), regno varchar(10),bcode int,submit_date date)"
)
# LIBRARY MENU
while True:
print("\n*******************************************************************************")
print("\t\t\t\tWELCOME TO MY LIBRARY")
print("*******************************************************************************")
print("\n\t\t###############LIBRARY MAIN MENUE###############")
print("\t\t\t\t1:Add Book")
print("\t\t\t\t2:Issue Book")
print("\t\t\t\t3:Submit Book")
print("\t\t\t\t4:Delete Book")
print("\t\t\t\t5:Display Books")
print("\t\t\t\t6:Exit\n")
choice = input("Enter your choice (1-6): ")
if choice == "1":
add_book()
elif choice == "2":
issue_book()
elif choice == "3":
submit_book()
elif choice == "4":
del_book()
elif choice == "5":
display_book()
elif choice == "6":
print("Thank you for using our software. Have a nice day!")
break
else:
print("Invalid choice. Please enter a valid choice.")
MYSQL
SCREENSHOTS
SCREEN OUTPUT
CONCLUSION
The project entitled “LIBRARY MANAGEMENT SYSTEM” is developed
using Python as front end and MYSQL as back end to computerize the
process of data management . This project covers all basic functionality
required to work in library and also helps reduce the work load .
BIBLIOGRAPHY
Google Chrome
Sumita Arora - CS Textbook