
Concept explainers
Code should be in Python, please
(1) Prompt the user to input a food item name, price, and quantity. Output an itemized receipt. (Submit for 2 points)
Enter food item name:
hot dog
Enter item price:
2.00
Enter item quantity:
5
RECEIPT
5 hot dog @ $2.00 = $10.00
Total cost: $10.00
(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:
5
RECEIPT
5 hot dog @ $2.00 = $10.00
Total cost: $10.00
Enter second food item name:
ice cream
Enter item price:
2.50
Enter item quantity:
4
RECEIPT
5 hot dog @ $2.00 = $10.00
4 ice cream @ $2.50 = $10.00
Total cost: $20.00
(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.00 = $10.00
Total cost: $10.00
Enter second food item name:
ice cream
Enter item price:
2.50
Enter item quantity:
4
RECEIPT
5 hot dog @ $2.00 = $10.00
4 ice cream @ $2.50 = $10.00
Total cost: $20.00
15% gratuity: $3.00
Total with tip: $23.00

Trending nowThis is a popular solution!
Step by stepSolved in 4 steps with 2 images

- The program contains 5 errors. The errors will fall into one of two categories: things that cause the program to crash, or things that cause the program to produce incorrect results. Problems that do not fall into those two categories (like formatting output) will not be considered an error. The program should calculate the total price of an item by calculating city and state taxes. Once the total tax amount is calculated and added to the item price, the program will display the total price. **My issue is the math is off and I can't figure out how to fix it so it looks like the example.**arrow_forwardQuestion 18 Guessing Game Code a solution for the following problem. Post your program in the textbox below. (NOTE: Indenting matters.) • Hard-code an integer variable valid value from 1 to 10. Ask the user to guess your whole number and input that number. - Then compare the user's input to your literal number ani tell the user how they compare, is it greater than, less than or equal to each other. Extra: Send an error message if the value entered is not between 1 and 10. Edit View Insert Format Tools Table Ev Ev To E v V O Paragraph v BIU A ev T? v 12pt varrow_forwardPLEASE COMMENT CODE Write a Python program that does the following Asks the user to enter the order. If the order is greater than $1000, there is 17% discount, if the order is greater than $800 and less or equal to $1000, the discount is 13%, if the order is less or equal to $ 800 but greater than $ 500, the discount is 9%, otherwise the discount is 5%. The tax percent is 13%. The program calculates the total invoice of the customer after the appropriate discount and the tax amount are applied. The program prints out the customer name (entered by the user), the discounted amount, the tax amount and the total invoice. The program asks if the user wants to continue using the application with a new order (y/n). Sample run: Please, enter the name of the customer: John Smith Please, enter the total of your order: $1100 Customer name: John Smith The order amount: $1100 The discounted…arrow_forward
- Database System ConceptsComputer ScienceISBN:9780078022159Author:Abraham Silberschatz Professor, Henry F. Korth, S. SudarshanPublisher:McGraw-Hill EducationStarting Out with Python (4th Edition)Computer ScienceISBN:9780134444321Author:Tony GaddisPublisher:PEARSONDigital Fundamentals (11th Edition)Computer ScienceISBN:9780132737968Author:Thomas L. FloydPublisher:PEARSON
- C How to Program (8th Edition)Computer ScienceISBN:9780133976892Author:Paul J. Deitel, Harvey DeitelPublisher:PEARSONDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781337627900Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningProgrammable Logic ControllersComputer ScienceISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education





