PLEASE USE PYTHON to solve all parts to this problem Program Specifications. Write a program to calculate the cost of hosting three pizza parties on Friday, Saturday and Sunday. Read from input the number of people attending, the average number of slices per person and the cost of one pizza. Dollar values are output with two decimals. For example, print(f"Cost: ${cost:.2f}").   Note: This program is designed for incremental development. Complete each step, take snapshots of the results, and include them in the final document you submit for grading.   Template:             import math               # type your code adding plenty of comments for better understanding of the steps   Step 1 . Read from input the number of people (int), average slices per person (float) and cost of one pizza (float). Calculate the number of whole pizzas needed (8 slices per pizza). There will likely be leftovers for breakfast. Hint: Use the ceil() function from the math library to round up to the nearest whole number and convert to an int. Calculate and output the cost for all pizzas. Ex: If the input is: 10  2.6  10.50   The output is: Friday Night Party 4 Pizzas: $42.00     Step 2. Calculate and output the sales tax (7%). Calculate and output the delivery charge (20% of cost including tax). Ex: If the input is: 10  2.6  10.50   The output is: Friday Night Party 4 Pizzas: $42.00 Tax: $2.94 Delivery: $8.99     Step 3 . Calculate and output the total including pizza, tax and delivery. Ex: If the input is: 10  2.6  10.50   The output is: Friday Night Party 4 Pizzas: $42.00 Tax: $2.94 Delivery: $8.99 Total: $53.93     Step 4. Repeat steps 1 - 3 with additional inputs for Saturday night (one order per line). Maintain and output a separate total for both parties. Ex: If the input is: 9   2.5   10.95 14   3.2   14.95   The output is: Friday Night Party 3 Pizzas: $32.85 Tax: $2.30 Delivery: $7.03 Total: $42.18   Saturday Night Party 6 Pizzas: $89.70 Tax: $6.28 Delivery: $19.20 Total: $115.17   Weekend Total: $157.35   Step 5 . Repeat steps 1 - 3 with additional inputs for Sunday night (one order per line). Maintain and output a total for all parties. Ex: If the input is: 6   2.8   10.95 22   2.1   12.95 12   1.8   14.95   The output is: Friday Night Party 3 Pizzas: $32.85 Tax: $2.30 Delivery: $7.03 Total: $42.18   Saturday Night Party 6 Pizzas: $77.70 Tax: $5.44 Delivery: $16.63 Total: $99.77   Sunday Night Party 3 Pizzas: $44.85 Tax: $3.14 Delivery: $9.60 Total: $57.59   Weekend Total: $199.53

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

Problem 2:

PLEASE USE PYTHON to solve all parts to this problem

Program Specifications.

Write a program to calculate the cost of hosting three pizza parties on Friday, Saturday and Sunday. Read from input the number of people attending, the average number of slices per person and the cost of one pizza. Dollar values are output with two decimals. For example, print(f"Cost: ${cost:.2f}").

 

Note: This program is designed for incremental development. Complete each step, take snapshots of the results, and include them in the final document you submit for grading.

 

Template:

            import math

              # type your code adding plenty of comments for better understanding of the steps

 

Step 1 . Read from input the number of people (int), average slices per person (float) and cost of one pizza (float). Calculate the number of whole pizzas needed (8 slices per pizza). There will likely be leftovers for breakfast. Hint: Use the ceil() function from the math library to round up to the nearest whole number and convert to an int. Calculate and output the cost for all pizzas.

Ex: If the input is:

10  2.6  10.50

 

The output is:

Friday Night Party

4 Pizzas: $42.00

 

 

Step 2. Calculate and output the sales tax (7%). Calculate and output the delivery charge (20% of cost including tax).

Ex: If the input is:

10  2.6  10.50

 

The output is:

Friday Night Party

4 Pizzas: $42.00

Tax: $2.94

Delivery: $8.99

 

 

Step 3 . Calculate and output the total including pizza, tax and delivery.

Ex: If the input is:

10  2.6  10.50

 

The output is:

Friday Night Party

4 Pizzas: $42.00

Tax: $2.94

Delivery: $8.99

Total: $53.93

 

 

Step 4. Repeat steps 1 - 3 with additional inputs for Saturday night (one order per line). Maintain and output a separate total for both parties.

Ex: If the input is:

9   2.5   10.95

14   3.2   14.95

 

The output is:

Friday Night Party

3 Pizzas: $32.85

Tax: $2.30

Delivery: $7.03

Total: $42.18

 

Saturday Night Party

6 Pizzas: $89.70

Tax: $6.28

Delivery: $19.20

Total: $115.17

 

Weekend Total: $157.35

 

Step 5 . Repeat steps 1 - 3 with additional inputs for Sunday night (one order per line). Maintain and output a total for all parties.

Ex: If the input is:

6   2.8   10.95

22   2.1   12.95

12   1.8   14.95

 

The output is:

Friday Night Party

3 Pizzas: $32.85

Tax: $2.30

Delivery: $7.03

Total: $42.18

 

Saturday Night Party

6 Pizzas: $77.70

Tax: $5.44

Delivery: $16.63

Total: $99.77

 

Sunday Night Party

3 Pizzas: $44.85

Tax: $3.14

Delivery: $9.60

Total: $57.59

 

Weekend Total: $199.53

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 4 steps with 3 images

Blurred answer
Knowledge Booster
Constants and Variables
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education