All India Senior Secondary Examination – 2024-25
DAV PUBLIC SCHOOL,MCL, IB VALLEY
AREA,BRAJRAJNAGAR
Submitted by : Project Supervisor :
Name _____________ MR. S.K.Satpathy
Class : XII Dept. of Computer Science
Roll : D.A.V. Public School
D.A.V. Public School MCL , BRAJRAJNAGAR.
MCL , Brajrajnagar.
DECLARATION
I ______________________________ a student of class– XII
of D.A.V Public School , MCL , Brajrajnagar , do
hereby solemnly declare that this project entitled
“MOVIE RESERVATION”
Submitted for the Computer practical paper for the AISSCE
2024-25 consists of the original work done by me under the
guidance and supervision of our computer teacher
Mr. Sanjib Kumar Satpathy.
Place: Brajrajnagar Name ________________
Date : Class : XII
Roll No:
D.AV. Public School
M.C.L , Brajrajnagar
ACKNOWLEDGEMENT
This project work has been successful due to the pains taken
by many people. It is not possible for me to acknowledge all of
them individually. I take this opportunity to express my gratitude to
them. However to my Computer Teacher Mr. Sanjib Kumar Satpathy , I
am specially indebted . I am also grateful to my associates who
helped me a lot in the successful completion of this project . I once
again thank my Computer Teachers for going through the project
thoroughly and helping me in improving this project.
Finally I thank the members of my family for their support
and encouragement.
Bonafide certificate
This is to certify that the project entitled “Movie
Reservation” submitted by
_____________________________ of Class XII . This project is
submitted for the partial fulfillment of conditions of
“AISSCE 2024-25” . It embodies the original work done by him
under my supervision and guidance .
Signature of the Internal Signature of the External
SYNOPSIS
This is a computerization approach in Python to automate
basic functioning of a MOVIE TICKET. This Project provides an
insight into a Reservation of Movie Ticket, trying to improve upon
the efficiency and reliability of the existing system improved reliable
account keeping and reduce paper work has been the major
provision of the system. I have tried to provide a convenient user
interface with minimal training.
This project on MOVIE TICKET is aimed to perform the
basic operations of a Reservation of Movie Ticket.
g=[]
print('Cineplex theatre movie reservation site,Brajrajnagar ')
print(' ------------------------------------- ')
a=input("Enter your name:")
print("Welcome ",a," to our site.We wish u have a good time ahead!")
print("Movies running:")
print(" 1-Iron Man")
print(" 2-Captain America")
print(" 3-Razi")
print(" 4-Three Idiots")
print(" 5-End Game")
m1="Iron Man"
m2='Captain America'
m3='Razi'
m4='Three Idiots'
m5='End Game'
h=int(input("Enter movie code:"))
if h==1:
b=input("Enter time:")
c=input("Enter date:")
print("Please select your seats:")
print("a1 a2 a3 a4 a5 a6 a7 a8 a9 a10 a11 a12 a13 a14 a15 a16 a17 a18 a19 a20")
print("b1 b2 b3 b4 b5 b6 b7 b8 b9 b10 b11 b12 b13 b14 b15 b16 b17 b18 b19 b20")
print("c1 c2 c3 c4 c5 c6 c7 c8 c9 c10 c11 c12 c13 c14 c15 c16 c17 c18 c19 c20")
print("d1 d2 d3 d4 d5 d6 d7 d8 d9 d10 d11 d12 d13 d14 d15 d16 d17 d18 d19 d20")
print("e1 e2 e3 e4 e5 e6 e7 e8 e9 e10 e11 e12 e13 e14 e15 e16 e17 e18 e19 e20")
print("f1 f2 f3 f4 f5 f6 f7 f8 f9 f10 f11 f12 f13 f14 f15 f16 f17 f18 f19 f20")
print("g1 g2 g3 g4 g5 g6 g7 g8 g9 g10 g11 g12 g13 g14 g15 g16 g17 g18 g19 g20")
print(" ")
print(" ")
print("h1 h2 h3 h4 h5 h6 h7 h8 h9 h10 h11 h12 h13 h14 h15 h16 h17 h18 h19 h20")
print("i1 i2 i3 i4 i5 i6 i7 i8 i9 i10 i11 i12 i13 i14 i15 i16 i17 i18 i19 i20")
d=int(input("Enter no of seats"))
for e in range(d):
f=input("Enter seat no:")
g.append(f)
i=input("Enter l for luxury and n for normal:")
if i=='l':
j=500
elif i=='n':
j=250
else:
print('Wrong input!')
k=int(input("Enter 1 if snacks wanted and 2 for no:") )
if k==1:
print(" 1-popcorn")
print(" 2-kfc meal")
print(" 3-mc meals")
l=int(input("Enter no:"))
if l==1:
m=80
elif l==2:
m=270
elif l==3:
m=350
n=(j*d)+m
print("ur ticket cost is",n)
else:
n=j*d
print("ur ticket cost is",n)
o=int(input('enter paypal- 1 or credit card-2:'))
if o==1:
x=input("paypal id:")
print('amount successfully credited!thank u!')
print("YOUR TICKET:")
print(" ------------------------------------------")
print("| name :",a," |")
print("| date :",c,' |')
print("| time :",b," |")
print("| rate :",n," |")
print("| seats :",g," |")
print("| movie :",h," |")
print("| paypal id:",x," |")
print(" ------------------------------------------")
elif o==2:
x=input("credit card id:")
x1=input("ccv no:")
print('amount successfully credited!thank u!')
print("YOUR TICKET:")
print(" ------------------------------------------")
print("| name :",a," |")
print("| date :",c,' |')
print("| time :",b," |")
print("| rate :",n," |")
print("| seats :",g," |")
print("| movie :",h," |")
print("| cc id :",x," |")
print("| ccv id :",x1," |")
print(" ------------------------------------------")
else:
print('wrong input"')
if h==2:
b=input("Enter time:")
c=input("Enter date:")
print("Please select your seats:")
print("a1 a2 a3 a4 a5 a6 a7 a8 a9 a10 a11 a12 a13 a14 a15 a16 a17 a18 a19 a20")
print("b1 b2 b3 b4 b5 b6 b7 b8 b9 b10 b11 b12 b13 b14 b15 b16 b17 b18 b19 b20")
print("c1 c2 c3 c4 c5 c6 c7 c8 c9 c10 c11 c12 c13 c14 c15 c16 c17 c18 c19 c20")
print("d1 d2 d3 d4 d5 d6 d7 d8 d9 d10 d11 d12 d13 d14 d15 d16 d17 d18 d19 d20")
print("e1 e2 e3 e4 e5 e6 e7 e8 e9 e10 e11 e12 e13 e14 e15 e16 e17 e18 e19 e20")
print("f1 f2 f3 f4 f5 f6 f7 f8 f9 f10 f11 f12 f13 f14 f15 f16 f17 f18 f19 f20")
print("g1 g2 g3 g4 g5 g6 g7 g8 g9 g10 g11 g12 g13 g14 g15 g16 g17 g18 g19 g20")
print(" ")
print(" ")
print("h1 h2 h3 h4 h5 h6 h7 h8 h9 h10 h11 h12 h13 h14 h15 h16 h17 h18 h19 h20")
print("i1 i2 i3 i4 i5 i6 i7 i8 i9 i10 i11 i12 i13 i14 i15 i16 i17 i18 i19 i20")
d=int(input("Enter no of seats"))
for e in range(d):
f=input("Enter seat no:")
g.append(f)
i=input("Enter l for luxury and n for normal:")
if i=='l':
j=500
elif i=='n':
j=250
else:
print('Wrong input!')
k=int(input("Enter 1 if snacks wanted and 2 for no:") )
if k==1:
print(" 1-popcorn")
print(" 2-kfc meal")
print(" 3-mc meals")
l=int(input("Enter no:"))
if l==1:
m=80
elif l==2:
m=270
elif l==3:
m=350
n=(j*d)+m
print("ur ticket cost is",n)
else:
n=j*d
print("ur ticket cost is",n)
o=int(input('enter paypal- 1 or credit card-2:'))
if o==1:
x=input("paypal id:")
print('amount successfully credited!thank u!')
print("YOUR TICKET:")
print(" ------------------------------------------")
print("| name :",a," |")
print("| date :",c,' |')
print("| time :",b," |")
print("| rate :",n," |")
print("| seats :",g," |")
print("| movie :",h," |")
print("| paypal id:",x," |")
print(" ------------------------------------------")
elif o==2:
x=input("credit card id:")
x1=input("ccv no:")
print('amount successfully credited!thank u!')
print("YOUR TICKET:")
print(" ------------------------------------------")
print("| name :",a," |")
print("| date :",c,' |')
print("| time :",b," |")
print("| rate :",n," |")
print("| seats :",g," |")
print("| movie :",h," |")
print("| cc id :",x," |")
print("| ccv id :",x1," |")
print(" ------------------------------------------")
else:
print('wrong input"')
if h==3:
b=input("Enter time:")
c=input("Enter date:")
print("Please select your seats:")
print("a1 a2 a3 a4 a5 a6 a7 a8 a9 a10 a11 a12 a13 a14 a15 a16 a17 a18 a19 a20")
print("b1 b2 b3 b4 b5 b6 b7 b8 b9 b10 b11 b12 b13 b14 b15 b16 b17 b18 b19 b20")
print("c1 c2 c3 c4 c5 c6 c7 c8 c9 c10 c11 c12 c13 c14 c15 c16 c17 c18 c19 c20")
print("d1 d2 d3 d4 d5 d6 d7 d8 d9 d10 d11 d12 d13 d14 d15 d16 d17 d18 d19 d20")
print("e1 e2 e3 e4 e5 e6 e7 e8 e9 e10 e11 e12 e13 e14 e15 e16 e17 e18 e19 e20")
print("f1 f2 f3 f4 f5 f6 f7 f8 f9 f10 f11 f12 f13 f14 f15 f16 f17 f18 f19 f20")
print("g1 g2 g3 g4 g5 g6 g7 g8 g9 g10 g11 g12 g13 g14 g15 g16 g17 g18 g19 g20")
print(" ")
print(" ")
print("h1 h2 h3 h4 h5 h6 h7 h8 h9 h10 h11 h12 h13 h14 h15 h16 h17 h18 h19 h20")
print("i1 i2 i3 i4 i5 i6 i7 i8 i9 i10 i11 i12 i13 i14 i15 i16 i17 i18 i19 i20")
d=int(input("Enter no of seats"))
for e in range(d):
f=input("Enter seat no:")
g.append(f)
i=input("Enter l for luxury and n for normal:")
if i=='l':
j=500
elif i=='n':
j=250
else:
print('Wrong input!')
k=int(input("Enter 1 if snacks wanted and 2 for no:") )
if k==1:
print(" 1-popcorn")
print(" 2-kfc meal")
print(" 3-mc meals")
l=int(input("Enter no:"))
if l==1:
m=80
elif l==2:
m=270
elif l==3:
m=350
n=(j*d)+m
print("ur ticket cost is",n)
else:
n=j*d
print("ur ticket cost is",n)
o=int(input('enter paypal- 1 or credit card-2:'))
if o==1:
x=input("paypal id:")
print('amount successfully credited!thank u!')
print("YOUR TICKET:")
print(" ------------------------------------------")
print("| name :",a," |")
print("| date :",c,' |')
print("| time :",b," |")
print("| rate :",n," |")
print("| seats :",g," |")
print("| movie :",h," |")
print("| paypal id:",x," |")
print(" ------------------------------------------")
elif o==2:
x=input("credit card id:")
x1=input("ccv no:")
print('amount successfully credited!thank u!')
print("YOUR TICKET:")
print(" ------------------------------------------")
print("| name :",a," |")
print("| date :",c,' |')
print("| time :",b," |")
print("| rate :",n," |")
print("| seats :",g," |")
print("| movie :",h," |")
print("| cc id :",x," |")
print("| ccv id :",x1," |")
print(" ------------------------------------------")
else:
print('wrong input"')
if h==4:
b=input("Enter time:")
c=input("Enter date:")
print("Please select your seats:")
print("a1 a2 a3 a4 a5 a6 a7 a8 a9 a10 a11 a12 a13 a14 a15 a16 a17 a18 a19 a20")
print("b1 b2 b3 b4 b5 b6 b7 b8 b9 b10 b11 b12 b13 b14 b15 b16 b17 b18 b19 b20")
print("c1 c2 c3 c4 c5 c6 c7 c8 c9 c10 c11 c12 c13 c14 c15 c16 c17 c18 c19 c20")
print("d1 d2 d3 d4 d5 d6 d7 d8 d9 d10 d11 d12 d13 d14 d15 d16 d17 d18 d19 d20")
print("e1 e2 e3 e4 e5 e6 e7 e8 e9 e10 e11 e12 e13 e14 e15 e16 e17 e18 e19 e20")
print("f1 f2 f3 f4 f5 f6 f7 f8 f9 f10 f11 f12 f13 f14 f15 f16 f17 f18 f19 f20")
print("g1 g2 g3 g4 g5 g6 g7 g8 g9 g10 g11 g12 g13 g14 g15 g16 g17 g18 g19 g20")
print(" ")
print(" ")
print("h1 h2 h3 h4 h5 h6 h7 h8 h9 h10 h11 h12 h13 h14 h15 h16 h17 h18 h19 h20")
print("i1 i2 i3 i4 i5 i6 i7 i8 i9 i10 i11 i12 i13 i14 i15 i16 i17 i18 i19 i20")
d=int(input("Enter no of seats"))
for e in range(d):
f=input("Enter seat no:")
g.append(f)
i=input("Enter l for luxury and n for normal:")
if i=='l':
j=500
elif i=='n':
j=250
else:
print('Wrong input!')
k=int(input("Enter 1 if snacks wanted and 2 for no:") )
if k==1:
print(" 1-popcorn")
print(" 2-kfc meal")
print(" 3-mc meals")
l=int(input("Enter no:"))
if l==1:
m=80
elif l==2:
m=270
elif l==3:
m=350
n=(j*d)+m
print("ur ticket cost is",n)
else:
n=j*d
print("ur ticket cost is",n)
o=int(input('enter paypal- 1 or credit card-2:'))
if o==1:
x=input("paypal id:")
print('amount successfully credited!thank u!')
print("YOUR TICKET:")
print(" ------------------------------------------")
print("| name :",a," |")
print("| date :",c,' |')
print("| time :",b," |")
print("| rate :",n," |")
print("| seats :",g," |")
print("| movie :",h," |")
print("| paypal id:",x," |")
print(" ------------------------------------------")
elif o==2:
x=input("credit card id:")
x1=input("ccv no:")
print('amount successfully credited!thank u!')
print("YOUR TICKET:")
print(" ------------------------------------------")
print("| name :",a," |")
print("| date :",c,' |')
print("| time :",b," |")
print("| rate :",n," |")
print("| seats :",g," |")
print("| movie :",h," |")
print("| cc id :",x," |")
print("| ccv id :",x1," |")
print(" ------------------------------------------")
else:
print('wrong input"')
if h==5:
b=input("Enter time:")
c=input("Enter date:")
print("Please select your seats:")
print("a1 a2 a3 a4 a5 a6 a7 a8 a9 a10 a11 a12 a13 a14 a15 a16 a17 a18 a19 a20")
print("b1 b2 b3 b4 b5 b6 b7 b8 b9 b10 b11 b12 b13 b14 b15 b16 b17 b18 b19 b20")
print("c1 c2 c3 c4 c5 c6 c7 c8 c9 c10 c11 c12 c13 c14 c15 c16 c17 c18 c19 c20")
print("d1 d2 d3 d4 d5 d6 d7 d8 d9 d10 d11 d12 d13 d14 d15 d16 d17 d18 d19 d20")
print("e1 e2 e3 e4 e5 e6 e7 e8 e9 e10 e11 e12 e13 e14 e15 e16 e17 e18 e19 e20")
print("f1 f2 f3 f4 f5 f6 f7 f8 f9 f10 f11 f12 f13 f14 f15 f16 f17 f18 f19 f20")
print("g1 g2 g3 g4 g5 g6 g7 g8 g9 g10 g11 g12 g13 g14 g15 g16 g17 g18 g19 g20")
print(" ")
print(" ")
print("h1 h2 h3 h4 h5 h6 h7 h8 h9 h10 h11 h12 h13 h14 h15 h16 h17 h18 h19 h20")
print("i1 i2 i3 i4 i5 i6 i7 i8 i9 i10 i11 i12 i13 i14 i15 i16 i17 i18 i19 i20")
d=int(input("Enter no of seats"))
for e in range(d):
f=input("Enter seat no:")
g.append(f)
i=input("Enter l for luxury and n for normal:")
if i=='l':
j=500
elif i=='n':
j=250
else:
print('Wrong input!')
k=int(input("Enter 1 if snacks wanted and 2 for no:") )
if k==1:
print(" 1-popcorn")
print(" 2-kfc meal")
print(" 3-mc meals")
l=int(input("Enter no:"))
if l==1:
m=80
elif l==2:
m=270
elif l==3:
m=350
n=(j*d)+m
print("ur ticket cost is",n)
else:
n=j*d
print("ur ticket cost is",n)
o=int(input('enter paypal- 1 or credit card-2:'))
if o==1:
x=input("paypal id:")
print('amount successfully credited!thank u!')
print("YOUR TICKET:")
print(" ------------------------------------------")
print("| name :",a," |")
print("| date :",c,' |')
print("| time :",b," |")
print("| rate :",n," |")
print("| seats :",g," |")
print("| movie :",h," |")
print("| paypal id:",x," |")
print(" ------------------------------------------")
elif o==2:
x=input("credit card id:")
x1=input("ccv no:")
print('amount successfully credited!thank u!')
print("YOUR TICKET:")
print(" ------------------------------------------")
print("| name :",a," |")
print("| date :",c,' |')
print("| time :",b," |")
print("| rate :",n," |")
print("| seats :",g," |")
print("| movie :",h," |")
print("| cc id :",x," |")
print("| ccv id :",x1," |")
print(" ------------------------------------------")
else:
print('wrong input"')
print('thank u for booking through our site.we wish u back to book again!')
l=input("enter end to exit")
if l=='end':
quit()
else:
print('try again')
l=input("enter end to exit")
if l=='end':
quit()
else:
print('try again')
OTPUT
BIBLIOGRAPHY
SOURCES
1. NCERT BOOK (COMPUTER SCIENCE)
2. Computer Science Book By Sumita Arora
3. HTTP://WWW.GOOGLE.CO.IN
HTTP://WWW.WIKKIPEDIA.COM