Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Python please 2.13 Ch 2 Program: Food receipt (Python 3) Note: When accuracy is essential, floats are not used to represent currency due to rounding
Python please
2.13 Ch 2 Program: Food receipt (Python 3) Note: When accuracy is essential, floats are not used to represent currency due to rounding and accumulation errors. Python provides several primitives specifically developed to implement financial applications. However, these topics are beyond the scope of this lab. (1) Prompt the user to input a food item name, price, and quantity. Output an itemized receipt. (Submit for 2 points) Note: This zyLab outputs a newline after each user-input prompt. For convenience in the examples below, the user's input value is shown on the next line, but such values don't actually appear as output when the program runs. Enter food item name: hot dog Enter item price: 2.00 Enter item quantity: 5 RECEIPT 5 hot dog @ $ 2.0 = $ 10.0 Total cost: $ 10.0 (2) Extend the program to prompt the user for a second item. Output an itemized receipt. (Submit for 2 points, so 4 points total) Enter food item name: hot dog Enter item price: 2.00 Enter item quantity: RECEIPT 5 hot dog @ $ 2.0 = $ 10.0 Total cost: $ 10.0 Enter second food item name: ice cream Enter item price: 2.50 Enter item quantity: 4 RECEIPT 5 hot dog @ $ 2.0 = $ 10.0 4 ice cream @ $ 2.5 = $ 10.0 Total cost: $ 20.0 (3) Extend again to output a third receipt that adds a mandatory 15% gratuity to the total cost. Output the total cost, the cost of gratuity, and the grand total. (Submit for 3 points, so 7 points total) (3) Extend again to output a third receipt that adds a mandatory 15% gratuity to the total cost. Output the total cost, the cost of gratuity, and the grand total. (Submit for 3 points, so 7 points total) Enter food item name: hot dog Enter item price: 2.00 Enter item quantity: 5 RECEIPT 5 hot dog @ $ 2.0 = $ 10.0 Total cost: $ 10.0 Enter second food item name: ice cream Enter item price: 2.50 Enter item quantity: 4 RECEIPT 5 hot dog @ $ 2.0 = $ 10.0 4 ice cream @ $ 2.5 = $ 10.0 Total cost: $ 20.0 15% gratuity: $ 3.0 Total with tip: $ 23.0Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started