0% found this document useful (0 votes)
61 views

Python 1

This document describes a movie ticket booking system. It allows customers to select a city, theater, movie, show time and number of tickets. The system then displays the booking details and confirms the purchase. Key aspects of the system include selecting booking details through interactive menus, storing customer and order data securely in a database, and automatically calculating ticket prices. Hardware and software requirements are also specified.

Uploaded by

Rashvandh
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
61 views

Python 1

This document describes a movie ticket booking system. It allows customers to select a city, theater, movie, show time and number of tickets. The system then displays the booking details and confirms the purchase. Key aspects of the system include selecting booking details through interactive menus, storing customer and order data securely in a database, and automatically calculating ticket prices. Hardware and software requirements are also specified.

Uploaded by

Rashvandh
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 4

MOVIE TICKET BOOKING

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 yourselves 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.

SYSTEM REQUIREMENT
● Hardware Specification
● Server:
● Processor-7th generation i5
● RAM-128MB (min)
● Hard disk-20GB
● Client:
● Processor-7th generation i5
● Ram-128MB (min)
● Hard disk- 20GB
● 2.2 Software Specification
● Platform - Windows 8,10
● Front end - Html, Css
● Backend - Xampp

global f
f=0

#this t_movie function is used to select movie name


def t_movie():
global f
f = f+1
print("which movie do you want to watch?")
print("1,movie 1 ")
print("2,movie 2 ")
print("3,movie 3")
print("4,back")
movie = int(input("choose your movie: "))
if movie == 4:
# in this it goes to center function and from center it goes to movie function and it
comes back here and then go to theater
center()
theater()
return 0
if f == 1:
theater()

# this theater function used to select screen


def theater():
print("which screen do you want to watch movie: ")
print("1,SCREEN 1")
print("2,SCREEN 2")
print("3,SCREEN 3")
a = int(input("choose your screen: "))
ticket = int(input("number of ticket do you want?: "))
timing(a)

# this timing function used to select timing for movie


def timing(a):
time1 = {
"1": "10.00-1.00",
"2": "1.10-4.10",
"3": "4.20-7.20",
"4": "7.30-10.30"
}
time2 = {
"1": "10.15-1.15",
"2": "1.25-4.25",
"3": "4.35-7.35",
"4": "7.45-10.45"
}
time3 = {
"1": "10.30-1.30",
"2": "1.40-4.40",
"3": "4.50-7.50",
"4": "8.00-10.45"
}
if a == 1:
print("choose your time:")
print(time1)
t = input("select your time:")
x = time1[t]
print("successful!, enjoy movie at "+x)
elif a == 2:
print("choose your time:")
print(time2)
t = input("select your time:")
x = time2[t]
print("successful!, enjoy movie at "+x)
elif a == 3:
print("choose your time:")
print(time3)
t = input("select your time:")
x = time3[t]
print("successful!, enjoy movie at "+x)
return 0

def movie(theater):
if theater == 1:
t_movie()
elif theater == 2:
t_movie()
elif theater == 3:
t_movie()
elif theater == 4:
city()
else:
print("wrong choice")

def center():
print("which theater do you wish to see movie? ")
print("1,Inox")
print("2,Icon")
print("3,pvp")
print("4,back")
a = int(input("choose your option: "))
movie(a)
return 0

# this function is used to select city


def city():
print("Hi welcome to movie ticket booking: ")
print("where you want to watch movie?:")
print("1,city 1")
print("2,city 2 ")
print("3,city 3 ")
place = int(input("choose your option: "))
if place == 1:
center()
elif place == 2:
center()
elif place == 3:
center()
else:
print("wrong choice")
city() # it calls the function city
Output:

Hi welcome to movie ticket booking:


where you want to watch movie?:
1,city 1
2,city 2
3,city 3
choose your option: 2
which theater do you wish to see movie?
1,Inox
2,Icon
3,pvp
4,back
choose your option: 1
which movie do you want to watch?
1,movie 1
2,movie 2
3,movie 3
4,back
choose your movie: 3
which screen do you want to watch movie:
1,SCREEN 1
2,SCREEN 2
3,SCREEN 3
choose your screen: 1
number of ticket do you want?: 4
choose your time:
{‘1’: ‘10.00-1.00’, ‘2’: ‘1.10-4.10’, ‘3’: ‘4.20-7.20’, ‘4’: ‘7.30-10.30’}
select your time:2
successful!, enjoy movie at 1.10-4.10

DONE BY :
RITHISH.K
XI – A2

You might also like