[Solved] Last Stop Boutique Five Day Sale Day Starting Monday Price Drop 10 Previous Day S Price Ex Q37156380
The Last Stop Boutique is having a five-day sale. Each day,starting on Monday, the price will drop 10% of the previous day’sprice. For example, if the original price of a product is $20.00,the sale price on Monday would be $18.00 (10% less than theoriginal price). On Tuesday the sale price would be $16.20 (10%less than Monday). On Wednesday the sale price would be $14.58; onThursday the sale price would be $13.12; and on Friday the saleprice would be $11.81. Develop a solution that will calculate theprice of an item for each of the five days, given the originalprice. Test the solution for an item costing $10.00.
Write the pseudo code first and then write a Python functionthat will take an initial item price and return that
item’s price at the start of each day together with theidentifying day. Assume the item is a pair ofsunglasses…Test your Python program with an initial price of$10.00
Expert Answer
Answer to The Last Stop Boutique is having a five-day sale. Each day, starting on Monday, the price will drop 10% of the previous … . . .
OR

