You are on page 1of 1

print("Welcome to Scoops of Delight Ice-cream Parlour")

print("Our Menu is :")


sum=0
dict={'Chocolate cone':40,'Butterscotch cone':30,'Vanilla cone':25,'Strawberry
cone':25,'Vanilla cup':30,'Strawberry cup':30,'Chocolate candy':10,'Mango
candy':10,'Orange candy':10,'Pista brick':120,'Tutti Fruti brick':140,'Kesar
brick':105,'Dark Chocolate brick':150}
lst=list(dict.keys())
while True:
print("Chocolate cone(40 Rs.)")
print("Butterscotch cone(30 rs.)")
print("Vanilla cone(25 Rs.)")
print("Strawberry cone(25 Rs.)")
print("Strawberry cup(30 Rs.)")
print("Vanilla cup(30 Rs.)")
print("Mango candy(10 Rs.)")
print("Orange candy(10 Rs.)")
print("Chocolate candy(10 Rs.)")
print("Pista brick(120 Rs.)")
print("Tutti Fruti brick(140 Rs.)")
print("Kesar brick(105 Rs.)")
print("Dark Chocolate brick(150 Rs.)")
print("press E for exit")
order=input("Enter your order:")
if order in lst:
sum=sum+dict[order]
elif order=="E":
break
else:
print("×× Enter right item ××")

print("Your Total Bill is = Rs.",sum,"/-")

You might also like