Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Suppose you are working for an online office supply store that provides discounts for bulk orders. The bulk pricing policy for their computer monitors is
Suppose you are working for an online office supply store that provides discounts for bulk orders. The bulk pricing policy for their computer monitors is as follows: - If 100 or fewer monitors are ordered, each item costs \\( \\$ 100 \\). - If 200 or fewer monitors are orders, the first 100 cost \\( \\$ 100 \\), and each additional costs \\( \\$ 90 \\). - If more than 200 monitors are ordered, then the first 100 cost \\( \\$ 100 \\), the next 100 cost \\( \\$ 90 \\), and each additional beyond the first 200 cost \\( \\$ 80 \\). For this part of the project, you will determine the price for orders containing the following number of computer monitors: \\[ 84,100,126,150,186,200,216,248 \\] Perform the following steps in a single code cell: 1. Create a list named "quantities" to store the order quantities listed above. 2. Loop over each list. Each time the loop executes, perform the following steps: - Calculate the price of the order. - Print a message in the format shown below, with the XXXX symbols replaced by the appropriate v
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started