Question: 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.
Use the operator to calculate the total cost of the side salads. Store the result in a variable named sscost
Use the operator to calculate the total cost of the hamburgers. Store the result in a variable named hbcost
Use the operator to calculate the total cost of the diet sodas. Store the result in a variable named dscost
Add the variables created in Steps storing the results in a variable named subtotal.
Calculate the tax charge by multiplying the subtotal by Round this result to decimal places, and store
the rounded value in a variable named tax.
Calculate the tip amount by multiplying the subtotal by Round this result to decimal places, and store
the rounded value in a variable named tip.
Calculate the total charge by adding the subtotal, the tax charge, and the tip amount. Store the result in a
variable named totalcharge.
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
dashes. The dollar signs should be vertically aligned, and the prices should be rightaligned 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 fstrings.
Side Salads: $xxxxx
Hamburgers: $xxxxx
Diet Sodas: $xxxxx
Subtotal: $xxxxx
Tax : $xxxxx
Tip : $xxxxx
Total Charge: $xxxxx
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
