Ip Project
Ip Project
Lead to Serve
Topic:
Name:
Standard:
Roll No.:
DSP INTERNATIONAL
SCHOOL
CERTIFICATE
This is to certify that Mr. / Ms. …………………………………………………..
………………………………………………………………………………………
………………………….. …………………………..
School Stamp
CONTENTS
● ACKNOWLEDGEMENT
● INTRODUCTION
● PURPOSE OF THIS PROJECT
● FEATURES
● SOURCE CODE
● OUTPUT
● BIBLIOGRAPHY
ACKNOWLEDGEMENT
I would like to express my sincere gratitude to all those who helped me
Complete this project successfully.
Firstly, I would like to express my special thanks to my teacher
Priyanka Kawale ma’am as well as our honourable principal Mrs. Vimmi Kapoor ma’am who
gave me this wonderful project. This project also helped me in doing a lot of
research and I came to know a about so many things.
I am extremely grateful to my parents and my friends who gave
their valuable suggestions and guidance for the completion of my project.
This cooperation and healthy criticism came handy and useful.
Hence, I would like to thank all of the above mentioned people once again.
INTRODUCTION
import pandas as pd
def add_book():
global library
def display_books():
if library.empty:
else:
print(library)
def issue_book():
else:
def return_book():
else:
while True:
print("\n1. Add Book\n2. Display Books\n3. Issue Book\n4. Return Book\n5. Exit")
if choice == "1":
add_book()
display_books()
issue_book()
return_book()
break
else:
print("Invalid choice.")
OUTPUT
1. Add Book
2. Display Books
3. Issue Book
4. Return Book
5. Exit
Enter choice: 1
2. Display Books
3. Issue Book
4. Return Book
5. Exit
Enter choice: 2
1. Add Book
2. Display Books
3. Issue Book
4. Return Book
5. Exit
Enter choice: 3
2. Display Books
3. Issue Book
4. Return Book
5. Exit
Enter choice: 2
1. Add Book
2. Display Books
3. Issue Book
4. Return Book
5. Exit
Enter choice: 4
2. Display Books
3. Issue Book
4. Return Book
5. Exit
Enter choice: 2
● Books:
○ INFORMATICS PRACTICES :- CLASS [ XI / XII] BY :- SUMITA ARORA
○ INFORMATICS PRACTICES :- NCERT TEXTBOOK
● Websites:
○ https://pandas.pydata.org
○ https://www.python.org
● Tools Used:
○ Python Programming Language
○ Pandas Library
● References:
○ Class notes and teacher guidance.