For python!
You walk into a fast food restaurant and order fries, a burger,and a drink. Create a simple text based user interactive programkeeps track of the menu items you order. Use a dictionary to keeptrack of your menu items and price and another dictionary to keeptrack of your order and quantity.
ï‚· Fries are $3.50
ï‚· Burger are $5.00
ï‚· Drinks are $1.00
ï‚· Sales tax rate is 7.25%
menu = { \"burger\":5.00, \"fries\":3.50, \"drink\":1.00 }
order = { \"burger\":0, \"fries\":0, \"drink\":0 }
i. Use menu for the menu items and price. Use order to keep arunning total of the number of items ordered.
ii. Keep a running subtotal.
iii. When all items are ordered, calculate the sales tax andtotal amount.
iv. Print a simple receipt.
v. See the assignment description for a sample video of how thismight function.