Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Perform the following steps in a single code cell. 1 . Use the * operator to calculate the total cost of the side salads. Store

Perform the following steps in a single code cell.
1. Use the * operator to calculate the total cost of the side salads. Store the result in a variable named ss_cost.
2. Use the * operator to calculate the total cost of the hamburgers. Store the result in a variable named hb_cost.
3. Use the * operator to calculate the total cost of the diet sodas. Store the result in a variable named ds_cost.
4. Add the variables created in Steps 13, storing the results in a variable named subtotal.
5. Calculate the tax charge by multiplying the subtotal by 0.0475. Round this result to 2 decimal places, and store
the rounded value in a variable named tax.
6. Calculate the tip amount by multiplying the subtotal by 0.15. Round this result to 2 decimal places, and store
the rounded value in a variable named tip.
7. Calculate the total charge by adding the subtotal, the tax charge, and the tip amount. Store the result in a
variable named total_charge.
8. Print the results with descriptive text output as shown below. Replace the xxxxx symbols with the appropriate
values. Match the formatting shown below exactly, including spacing. The dashed lines should contain 22
dashes. The dollar signs should be vertically aligned, and the prices should be right-aligned with each other and
with the dashed lines. There should be five characters of spacing allotted for each price, but some prices will
only require four spaces. Each price should have exactly two decimal places displayed. This formatting can be
most easily accomplished using f-strings.
2 Side Salads: $xxxxx
2 Hamburgers: $xxxxx
2 Diet Sodas: $xxxxx
Subtotal: $xxxxx
Tax (4.75%): $xxxxx
Tip (15%): $xxxxx
Total Charge: $xxxxx

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

DB2 Universal Database V7.1 Application Development Certification Guide

Authors: Steve Sanyal, David Martineau, Kevin Gashyna, Michael Kyprianou

1st Edition

0130913677, 978-0130913678

More Books

Students also viewed these Databases questions

Question

What steps should be taken to address any undesirable phenomena?

Answered: 1 week ago