0% found this document useful (0 votes)
8 views6 pages

Declaration: I,, A Student of Of, Hereby Submit The Project Entitled

Jasmit Priya, a Class 11B student at International School, Patna, submitted a project titled 'A Computer Science Project on Restaurant Management System (Using Python Programming Language)' for the 2024-2025 session. The project includes features such as menu listing, billing, and inventory management, and is developed using Python with various software and hardware resources. The report concludes that the project effectively demonstrates a basic restaurant management system that can be further enhanced with additional functionalities.

Uploaded by

priyajasmit
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
8 views6 pages

Declaration: I,, A Student of Of, Hereby Submit The Project Entitled

Jasmit Priya, a Class 11B student at International School, Patna, submitted a project titled 'A Computer Science Project on Restaurant Management System (Using Python Programming Language)' for the 2024-2025 session. The project includes features such as menu listing, billing, and inventory management, and is developed using Python with various software and hardware resources. The report concludes that the project effectively demonstrates a basic restaurant management system that can be further enhanced with additional functionalities.

Uploaded by

priyajasmit
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 6

DECLARATION

I, Jasmit Priya, a student of Class 11B of International


School, Patna, hereby submit the project entitled "A
COMPUTER SCIENCE PROJECT ON
RESTAURANT MANAGEMENT SYSTEM (USING
PYTHON PROGRAMMING LANGUAGE)" for
Computer Practical of session 2024-2025. This project
report consists of original work done by me.

DATE STUDENT’S SIGNATURE


______ ______________________

1
International school,patna
Certification
This is to certify that Jasmit Priya of Class 11B has
successfully completed the Computer Science project for the
session 2024-2025 as per CBSE guidelines.

2
International school,patna
ACKNOWLEDGEMENT

I would like to express my gratitude to our Principal for providing me with the opportunity to work on
this project. I also extend my appreciation to everyone who supported me in completing this work.

3
International school,patna
HARDWARE USED:

 Printer to print the project report


 Computer device with the following specifications:
o 8GB DDR4 RAM
o Intel i5 8th Gen Processor
o 1TB SHDD, 128GB SSD
o 4GB Dedicated Graphics Processor

SOFTWARE USED:

 Operating System: Windows 10


 Python IDLE 3.7
 Anaconda Enterprises Python Library
 Microsoft Office Word for Report Making

RESOURCE HELPED USED:

 Computer Science Book by Sumita Arora


 Slideshare.net
 Anacondaforums.net
 Youtube.com

4
International school,patna
PROJECT OVERVIEW
This project is a Python-based Restaurant Management System that includes:

 Menu listing with item prices


 Billing system with tax calculations
 Inventory management
 Updating menu features

5
International school,patna
PYTHON CODE EXCERPT

# Sample Python Code for Billing System


menu = {"Dosa": 50, "Sandwich": 40, "Biryani": 120, "Tea": 10}
total = 0
while True:
item = input("Enter dish name (or 'Q' to quit): ")
if item.lower() == 'q':
break
elif item in menu:
quantity = int(input("Enter quantity: "))
total += menu[item] * quantity
else:
print("Item not found in menu.")
print("Total Bill: ", total + (total * 0.05)) # Adding 5% GST

OUTPUT SAMPLE:

 Item Ordered: Biryani


 Quantity: 2
 Total Bill (with GST): 252

CONCLUSION
This project successfully demonstrates a simple yet efficient Restaurant Management System using
Python. It can be expanded with additional features such as database integration and user
authentication.

SUBMITTED BY:
Jasmit Priya
Class 11B
Session: 2024-2025
International School, Patna

6
International school,patna

You might also like