0% found this document useful (0 votes)
69 views1 page

Bazooka Menu

Uploaded by

hanyrawan626
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)
69 views1 page

Bazooka Menu

Uploaded by

hanyrawan626
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/ 1

# inputs

print("""
Bazooka Menu:
1- El Talaa Duet Offer 172 LE
2- King El Sa3ada 149 LE
3- Wrap El Sa3ada 216 LE
4- Wrap Box 158 LE
""")
item = int(input("Enter item number (1,2,3,4) \n"))

# Processing
if item == 1 or item == 2 or item == 3 or item == 4:
q = int(input("Enter Quantity \n"))
if item == 1:
item_name = "El Talaa Duet Offer"
price = 172
elif item == 2:
item_name = "King El Sa3ada"
price = 149
elif item == 3:
item_name = "Wrap El Sa3ada"
price = 216
elif item == 3:
item_name = "Wrap Box"
price = 158
else:
print("Please choose number from menu")
if item == 1 or item == 2 or item == 3 or item == 4:
total = price*q
tax = price*0.15
delivery = 20
final = total+tax+delivery
# output
print(f"""
Receipt:
Date: 12-11-2023
Item name: {item_name}
price: {price}
Quantity: {q}
Tax: {tax}
delivery: {delivery}
Total: {final}
""")

You might also like