Question: In python please create a program that EXACTLY copies the runs provided below. USE the assumpitions as rules you have to follow for the code.

You are programming at Mile High Comics. Chuck, the owner, is having a special promotion next month based on the number of purchased items in the shopping cart. Chuck has defined the following discount schedule: - 1 - 9 items: No Discount - 10-25 items: 5% discount - 26-39 items: 10% discount - 40 items or more: 15% discount - Shopping carts over $200 will get a 20% discount regardless of the number items Your program should do the following: - Prompt the user for the cart total - assume good data - Prompt the user for the number of items in the cart - assume good data. Your program should produce the following output for a single run: Run 1 What is the cart total: 25.70 What is the number of items in the cart: 8 Your cart total is $25.70, with a total of 8 items. You are not eligible for a discount. Run 2 What is the cart total: 30.00 What is the number of items in the cart: 12 Your cart total is $30.00, with a total of 12 items. You are eligible for a discount of 5% based on the number of items purchased - precisely a $1.50 value. Your new total is 528.00 Assumptions You are allowed to use a single IF statement. - You are not allowed to have a print statement in your IF statement. - All paths of the IF statement should be reachable with good data. - You can only use coding constructs that have been covered
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
