CS Project VBPS
CS Project VBPS
SCHOOL
ACADEMIC YEAR:2024-2025
PROJECT REPORT ON
CREATING MOVIE TICKET BOOKING
NAME: SHIVANJAL BHUSHAN
CLASS: XII
SUBJECT: COMPUTER SCIENCE
SUB-CODE: 083
PROJECT GUIDE:
MR. RITESH SIR
PGT (CS)
VISHNU BHAGWAN PUBLIC SCHOOL
JHALWA, PRAYAGRAJ UTTAR PRADESH
CERTIFICATE
1. Acknowledgement 04
2. Introduction 05
3. Hardware and 06
Software
4. Coding 07-12
5. Output 13
6. Bibliography 14
INTRODUCTION
Welcome to newly designed website movie
ticket booking is a faster , cleaner and a tad
more personal website, specially designed to
make your booking experience better. Log on,
navigate and find out for yourself and if time
permits leave your valuable feedback.
Customers may view the contents of any movie
show at any time and may book any movie ticket
as needed. The program automatically calculates
the subtotal and grand total. When a visitor
decides to finally book the ticket, the order
information including the buyer's name, address
and billing instruction is stored in the database
securely and payment has been made.
You need to register a new user whenever you
have first visited or site then for future it will be
stored in database permanently and you can
book ticket.
HARDWARE & SOFTWARE
REQUIREMENT
Hardware: -
1 :- Operating system : Windows 10 pro
2 :- Processor : Intel(R) Core(TM) i3-6006U
: CPU@ 2.00GHz, 2 Core(s),
: 4 Logical Processor(s)
3 :- RAM : 512MB+
4 :- HARD DISK
CODING
# Global variable to track movie selection f
=0
if movie == 4:
# Goes back to center function for theater
selection
center()
return
if f ==
1:
theater()
if screen == 1:
print("CHOOSE YOUR TIME:")
print(time1) t = input("SELECT YOUR
TIME: ") x = time1[t]
print(f"SUCCESSFUL! Enjoy your movie at
{x}") elif screen == 2: print("CHOOSE
YOUR TIME:") print(time2) t=
input("SELECT YOUR TIME:
") x = time2[t] print(f"SUCCESSFUL!
Enjoy your movie at
{x}") elif screen
== 3:
print("CHOOSE YOUR TIME:")
print(time3) t = input("SELECT YOUR
TIME: ") x = time3[t]
print(f"SUCCESSFUL! Enjoy your movie at
{x}")
else:
print("INVALID SCREEN CHOICE!")
# Function to handle movie selection based
on theater def movie(theater_choice): if
theater_choice in [1, 2, 3]:
t_movie() elif
theater_choice == 4:
city()
else:
print("WRONG
CHOICE!")
theater_choice = int(input("CHOOSE
YOUR OPTION: ")) movie(theater_choice)