0% found this document useful (0 votes)
13 views3 pages

Enhanced Computer Science Project No Title

Enhanced cs class 12th

Uploaded by

couchpotatoooox
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
13 views3 pages

Enhanced Computer Science Project No Title

Enhanced cs class 12th

Uploaded by

couchpotatoooox
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 3

DAV Public School, Patratu

Computer Science Project

Submitted By:

Vageesha Vaishnavi

Class 12 - Roll No. 31

Submitted To:

Teacher's Sign: __________

Acknowledgment

I would like to express my gratitude to my Computer Science teacher for guiding me throughout this project.

I also thank DAV Public School, Patratu, for providing the resources and platform to develop this project.

Index

1. Automation of Departmental Store

2. Student Management System

3. Basic Calculator

4. Library Management
Automation of Departmental Store

# Departmental Store Automation

products = {"Milk": 50, "Bread": 40, "Eggs": 5}

cart = {}

while True:

print("Available products:", products)

choice = input("Enter product to add to cart or 'done': ")

if choice == 'done':

break

if choice in products:

qty = int(input("Enter quantity: "))

cart[choice] = qty * products[choice]

else:

print("Product not available.")

total = sum(cart.values())

print("Total Bill:", total)


Student Management System

# Student Management System

students = {}

while True:

print("1. Add Student\n2. View All\n3. Exit")

choice = int(input("Enter choice: "))

if choice == 1:

name = input("Enter student name: ")

marks = float(input("Enter marks: "))

students[name] = marks

elif choice == 2:

for name, marks in students.items():

print(name, ":", marks)

elif choice == 3:

break

You might also like