0% found this document useful (0 votes)
33 views4 pages

Sweet Shop Management System

Uploaded by

Druv Kotwani
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)
33 views4 pages

Sweet Shop Management System

Uploaded by

Druv Kotwani
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

import pandas as pd

import [Link] as plt

import random

def addSweet(df):

code = int(input("Enter the sweet code "))

name = input("Enter the name of the sweet ")

cost = int(input("Enter cost per kg "))

qty = float(input("Enter quantity in kgs "))

ig = input("Enter the main ingredient ")

[Link][code] = [name, cost, qty, ig]

print("\nAdded Successfully \n")

print("*"*50)

print("\t\t Kanha Sweet Shop")

print("*"*50)

df = pd.read_csv("[Link]")

while True:

print("Press 1 - Add a New Sweet")

print("Press 2 - Show all")

print("Press 3 - Search")

print("Press 4 - Delete")

print("Press 5 - Update")

print("Press 6 - Create Bill")

print("Press 7 - Show Chart of Sweets")


print("Press 8 - Show Chart of Bills")

print("Press 9 - To Quit")

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

if n == 1:

addSweet(df)

elif n == 2:

print("\n","*"*50)

print(df)

print("*"*50)

elif n == 3:

code = int(input("Enter the sweet code to be searched : "))

if code in [Link]:

print([Link][code])

print("\n")

else:

print("No sweet found with this code ")

elif n == 4:

code = int(input("Enter the sweet code to be deleted : "))

if code in [Link]:

[Link](code,inplace=True)

print("\nDeleted\n")

else:

print("No sweet found with this code ")

elif n == 5:

code = int(input("Enter the sweet code to be updated : "))

if code in [Link]:

name = input("Enter the updated name of the sweet ")


cost = int(input("Enter updated cost per kg "))

qty = float(input("Enter quantity in kgs "))

ig = input("Enter the main ingredient ")

[Link][code] = [name, cost,qty,ig]

print("\nUpdated\n")

else:

print("No sweet found with this code ")

elif n == 6:

print("Available Sweets ")

print("\n", "*" * 50)

print(df)

print("*" * 50)

code = int(input("Enter the code of the sweet to be purchased : "))

if code in [Link]:

qty = int(input("Enter the quantity to be purchased : "))

amt = qty * [Link][code,"Cost"]

print("Your Due Amount is ",amt)

name = input("Enter Customer name : ")

bdate = input("Enter Billing Date : ")

bf = pd.read_csv("[Link]",index_col="billid")

[Link][[Link](1000,9999)] = [name,bdate,amt,[Link][code,"Name"]]

bf.to_csv("[Link]")

else:

print("No sweet found with this code ")

elif n == 7:

[Link](df["Name"],df["Cost"],color="navy")

[Link]("Rate List of Sweets")


[Link]()

elif n == 8:

bf = pd.read_csv("[Link]")

[Link]("Sold Sweets")

[Link](bf["name"],bf["order_amt"],color="orange")

[Link]()

elif n == 9:

df.to_csv("[Link]",index=False)

print("Thanks for Visiting")

print("Data Updated !!!")

break

You might also like