Hotal Management (Yogendra & Niteesh)

You might also like

Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 9

JAWAHAR NAVODAYA

VIDYALAYA
Rudhauli - basti

PROject
WORK
SUBJECT-COMPUTER SCIENCE
SUBMMITED TO :
Mr. PRAKASH KUMAR GUPTA
(PGT CS.)

SUBMMITED BY :

YOGENDRA PRASAD
ROLL NO- __________

&
NITEESH KUMAR CHAUDHARY
ROLL NO- __________
UNDERTAKING

We declare that the work presented in this project


titled “HOTEL MANAGEMENT SYSTEM”, submitted
to MR. Prakash kumar gupta Computer Science
navodaya Vidyalaya rudhauli-basti for the
award of the CBSE - AISSE class XII certificate.
We have not plagiarized or submitted the same work
for the award of any other examination. In case this
undertaking is found incorrect, we accept that our
Certificates may be unconditionally withdrawn.
CERTIFICATE

Certified that the work contained in the “COMPUTER


SCIENCE PROJECT ’’titled “HOTAL MANAGEMENT
SYSTEM” " by: "YOGENDRA PRASAD AND NITEESH
KUMAR CHAUDHARY ”, has been carried out under my
supervision and that this work has not been submitted
elsewhere for a AISSE certificate.
PRAKASH KUMAR GUPTA
PGT-COMPUTER SCIENCE
JAWAHAR NAVODAYA VIDYALAYA
RUDHAULI -BASTI
Acknowledgements

We would like to thank Mr. Yogendra Bhakta, Principal


Jawahar Navodaya Vidyalaya Basti.
We are deeply indebted to our mentor Mr. prakash
kumar gupta .
We further thank to all the staff members of Jawahar
Navodaya Vidyalaya Basti.
We owe our sincere gratitude towards Navodaya
Vidyalaya Samiti.
Our heartfelt thanks to CBSE.
We also express our deepest gratitude to our parents.
Finally, we would like to wind up by paying our heartfelt
thanks to all our near and dear ones.

1.YOGENDRA PRASAD - XII'A' - ROLL NO -


2.NITEESH KUMAR CHAUDHARY - XII'A' - R0LL NO-
Contant

.
Customer welcome

.
Customer inroduction

.
Hotal facilities

.
Discount

.
Payment or fees

.
Examples & Screenshotes

.
Customer Thanking

.
Ending
“CUSTOMER WELCOME”

# customer welcome

print("Welcome in my ' HOTAL SAMRAT'")

“CUSTOMER INTRODUCTION”

#Customer data

import csv

winfo=open("CUSTOMER.CSV","a")

dp=csv.writer(winfo)

dp.writerow(["NAME","GENDER","AGE
","MOBILE_NO"," VILLAGE","STATE","PINCODE","AADHAR
NO.","GMIAL ID " ])

x=int(input("Enter the number of customer : "))


for a in range(x):

name=input("enter the name of customer ;")


gender=input(" enter the gender of customer:")

age=int(input("enter the age of the customer "))

mobile_no=int(input("enter mobile no. :"))

vill=input("enter the village name :")

state=input("enter the state :")

pincode=int(input("enter your pin code- "))

aadhar_no=int(input("enter your aadhar number -"))

gmail_id=input("enter your gmail please-:")

data=[name, gender , age ,mobile_no,vill,


state,pincode,aadhar_no,gmail_id]
dp.writerow(data)

winfo.close()# customer welcome


print("Welcome in my ' HOTAL SAMRAT '")

# customer DATA

import csv

winfo=open("customer.CSV","a")
dp=csv.writer(winfo)

dp.writerow(["NAME","GENDER","AGE
","MOBILE_NO"," VILLAGE","STATE","PINCODE","AADHAR
NO.","GMIAL ID " ])

x=int(input("Enter the number of customer : "))

for a in range(x):

name=input("enter the name of customer ;")


gender=input(" enter the gender of customer:")

age=int(input("enter the age of the customer "))

mobile_no=int(input("enter mobile no. :"))

vill=input("enter the village name :")

state=input("enter the state :")

pincode=int(input("enter your pin code- "))

aadhar_no=int(input("enter your aadhar number -"))

gmail_id=input("enter your gmail please-:")

data=[name, gender , age ,mobile_no,vill,


state,pincode,aadhar_no,gmail_id]
dp.writerow(data)
winfo.close()

You might also like