Question: Dollar Store A store sells all items for $ 1 . Customers buying 1 0 or more items receive a 5 % discount. Additionally, there

Dollar Store
A store sells all items for $1. Customers buying 10 or more items receive a 5% discount. Additionally, there is 7.5% sales tax. Write a program that prompts the user for the number of items purchased, and calculates the total cost before and after tax. Here is an example session:
Enter number of items: 10
Net Cost: 9.50
Tax: ,0.71
After tax: 10.21
As part of your program, define and use these functions:
\table[[function,description,Input arguments,Returned result],[calccost (count),Calculate the pre-tax cost,\table[[Count: an integer],[for the number of],[items purchased]],\table[[Pretax total cost of],[items purchased,],[accounting for],[discount if any]]],[\table[[displayLine(label,],[amount)]],\table[[Display one ine of the],[output, formatted to a],[given width and number],[of decimal places]],\table[[Label: the label],[for the displayed],[line],[Amount: the],[amount for the],[displayed line]],\table[[None (function],[displays to screen)]]],[display(cost, tax),\table[[Display net cost, tax, and],[after-tax amounts using],[calls to displayLine()],[function]],\table[[Cost: the pre-tax],[cost, calculated],[by calcCost()],[Tax: the tax]],\table[[None (function],[displays to screen)]]]]
Technically, the function returns the special Python value None.
 Dollar Store A store sells all items for $1. Customers buying

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!