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

Computer Project XI

This document describes a student's investigatory project on a parking management system. It includes a declaration by the student, a certificate signed by teachers to verify the original work, and acknowledgements. The document outlines the source code for a Python program that allows users to manage vehicle entries and exits, view parked vehicles, check available spaces, view rates, and generate bills. It concludes with noting the program demonstrates an interactive platform using the Python programming language.

Uploaded by

mahantasharannya
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)
27 views

Computer Project XI

This document describes a student's investigatory project on a parking management system. It includes a declaration by the student, a certificate signed by teachers to verify the original work, and acknowledgements. The document outlines the source code for a Python program that allows users to manage vehicle entries and exits, view parked vehicles, check available spaces, view rates, and generate bills. It concludes with noting the program demonstrates an interactive platform using the Python programming language.

Uploaded by

mahantasharannya
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/ 10

INVESTIGATORY PROJECT OF COMPUTER SCIENCE

ON
PARKING MANAGEMENT SYSTEM

Submitted towards the partial fulfilment of


Annual Practical Examination for the
Session 2022-23
Under the guidance of Mrs. Geetanjali Hota
SUBMITTED BY:
SWASTIKAA PATTNAIK
XI B
23/5385

DAV PUBLIC SCHOOL, POKHARIPUT


1
DECLARATION

I, Swastikaa Pattnaik, a student of Class-XI, Sec-B of


DAV Public School, Pokhariput hereby submit the
project entitled “Parking Management System” for
the computer practical of ANNUAL PRACTICAL
EXAMINATION 2022-23. This project consists of
original work done by me under the able guidance and
supervision of my computer teacher.

Signature of Student

2
CERTIFICATE

This is to certify that the project entitled “Parking


Management System” is an original piece work done by
Swastikaa Pattnaik of Class-XI, Sec-B is in accordance with
the topic allotted to her.

This project is submitted towards the partial fulfilment of the


conditions laid down for ANNUAL PRACTICAL
EXAMINATION 2022-23 and embodies the work done by
her under my guidance and supervision.

Signature of Internal

Signature of External

Signature of Teacher

ACKNOWLEDGEMENT

3
I would like to profound sense of gratitude to my guide
Ms. Geetanjali Hota, my computer teacher for her
valuable guidance during preparation of my project
work.

I am grateful to my principal Ms. Sujata for her


encouragement and constant inspiration.

With great pleasure, I also extend my gratitude to my


parents, other family members and friends for their
support help which enabled me to finish this piece of
work successfully.

Date:

CONTENT

SL.NO PARTICULARS PAGE


. NO.

4
1. Declaration 02

2. Certificate 03

3. Acknowledgement 04

4. Content 05

5. Source Code 06-08

6. Output 09

11. Conclusion & Bibliography 10

5
SOURCE CODE
Vehicle_Number=[ ]
Vehicle_Type=[ ]
Date=[ ]
Time=[ ]
#Spaces available for vehicles
bicycles=10
bikes=20
cars=30
while True:
print("\t\tParking Management System")
print("1.Vehicle entry")
print("2.Remove entry")
print("3.View parked vehicle")
print("4.View left parking space ")
print("5.Charging details ")
print("6.Bill")
print("7.Quit")
option=int(input("Select option:"))
if option==1:
V_No=input("Enter vehicle number")
Vehicle_Number.append(V_No)
Vtype=str(input("Enter vehicle type(Bicycle=A, Bike=B, Car=C):"))
if Vtype=="a" or Vtype=="A":
Vehicle_Type.append("Bicycle")
bicycles-=1
elif Vtype=="b" or Vtype=="B":
Vehicle_Type.append("Bike")
bikes-=1
elif Vtype=="c" or Vtype=="C":
Vehicle_Type.append("Car")

6
cars-=1
else:
print("Please enter valid option")
date=input("Enter date")
Date.append(date)
time=input("Enter time")
Time.append(time)
elif option==2:
Vno=input("Enter vehicle number to delete")
if Vno in Vehicle_Number:
i=Vehicle_Number.index(Vno)
Vehicle_Number.pop(i)
Vehicle_Type.pop(i)
Date.pop(i)
Time.pop(i)
else:
if Vno not in Vehicle_Number:
print("No entry found")
elif option==3:
c=0
print("Parked Vehicles")
print("Vehicle No.\tVehicle Type\t Date\t Time")
for i in range(len(Vehicle_Number)):
c+=1
print(Vehicle_Number[i],"\t ",Vehicle_Type[i],"\t " ,Date[i],"\t ",Time[i])
print("Total Records:",c)

elif option==4:
print("Spaces Left For Parking")
print("Spaces Available for Bicycles:",bicycles)
print("Spaces Available for Bikes:",bikes)
print("Spaces Available for Cars:",cars)

7
elif option==5:
print("Parking Rate")
print("Bicycle Rs20/Hr")
print("Bike Rs40/Hr")
print("Car Rs60/Hr")
elif option==6:
print("Bill")
V_no=input("Enter vehicle number to generate bill")
if V_no in Vehicle_Number:
i=Vehicle_Number.index(V_no)
else:
if V_no not in Vehicle_Number:
print("No entry found")
print("Vehicle Check in time",Time[i])
print("Vehicle Check in Date",Date[i])
print("Vehicle Type",Vehicle_Type[i])
hr=input("Enter No. of hours vehicle was parked")
if int(hr)!=0:
if Vehicle_Type[i]=="Bicycle":
amt=int(hr)*int(20)
elif Vehicle_Type[i]=="Bike":
amt=int(hr)*int(40)
elif Vehicle_Type[i]=="Car":
amt=int(hr)*int(60)
print("Parking Charge=Rs",amt)
elif option==7:
print("Thank You for using our services")
break
quit

8
OUTPUT

9
CONCLUSION

Thus, the submitted project was an interactive program coded


with the help of Python to demonstrate the simple and user-
friendly platform of High-Level Language, Python.

Bibliography

www.github.com
www.copyassignment.com
Sumita Arora Book, Class XI

10

You might also like