Customers can buy computer screens in bulk from Computer Monitor Paradise, Inc. Customers receive discounts based on the number of monitors they buy. Complete the function bulk_purchase, which takes two arguments: monitors_to_buy, which is the number of computer monitors a customer wants to purchase; and monitor_cost, which is the non-discounted cost to buy a single monitor. The function computes and returns the total cost for the purchase according to the following rules: # of Monitors Cost in $ 1-99 100-199 200+ Examples: monitor_cost per monitor monitor_cost for each of the first 100 monitors and 20% discount on the rest 20% discount on the first 200 monitors and 35% discount on the rest Function Call bulk_purchase(80, 75) bulk_purchase(175, 120) bulk_purchase (228, 180) $32076.00 Expected Output $6000.00 $19200.00
Customers can buy computer screens in bulk from Computer Monitor Paradise, Inc. Customers receive discounts based on the number of monitors they buy. Complete the function bulk_purchase, which takes two arguments: monitors_to_buy, which is the number of computer monitors a customer wants to purchase; and monitor_cost, which is the non-discounted cost to buy a single monitor. The function computes and returns the total cost for the purchase according to the following rules: # of Monitors Cost in $ 1-99 100-199 200+ Examples: monitor_cost per monitor monitor_cost for each of the first 100 monitors and 20% discount on the rest 20% discount on the first 200 monitors and 35% discount on the rest Function Call bulk_purchase(80, 75) bulk_purchase(175, 120) bulk_purchase (228, 180) $32076.00 Expected Output $6000.00 $19200.00
Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
Related questions
Question
![Customers can buy computer screens in bulk from Computer Monitor Paradise, Inc. Customers receive discounts based on the number of
monitors they buy. Complete the function bulk_purchase, which takes two arguments: monitors_to_buy, which is the number of computer
monitors a customer wants to purchase; and monitor_cost, which is the non-discounted cost to buy a single monitor. The function computes
and returns the total cost for the purchase according to the following rules:
# of Monitors Cost in $
1-99
100-199
200+
Examples:
monitor_cost per monitor
monitor_cost for each of the first 100 monitors and 20% discount on the rest
20% discount on the first 200 monitors and 35% discount on the rest
Function Call
Expected Output
bulk_purchase(80, 75)
$6000.00
bulk_purchase(175, 120)
$19200.00
bulk_purchase (228, 180) $32076.00
[ ]
1 def bulk_purchase (monitors_to_buy, monitor_cost):
2
3
return 0 # DELETE THIS LINE and start coding here.
# Remember: end all of your functions with a return statement, not a print statement!
4
5 # Test cases
6 print (f'${bulk_purchase(80, 75):.2f}')
7 print (f'${bulk_purchase(175, 120):.2f}')
8 print (f'${bulk_purchase (228, 180):.2f}')](/v2/_next/image?url=https%3A%2F%2Fcontent.bartleby.com%2Fqna-images%2Fquestion%2Fa684ef64-b106-44e3-b477-7930de74cd26%2F230e580a-37fc-40ad-8970-808488da29a9%2Fa8yj1w7_processed.png&w=3840&q=75)
Transcribed Image Text:Customers can buy computer screens in bulk from Computer Monitor Paradise, Inc. Customers receive discounts based on the number of
monitors they buy. Complete the function bulk_purchase, which takes two arguments: monitors_to_buy, which is the number of computer
monitors a customer wants to purchase; and monitor_cost, which is the non-discounted cost to buy a single monitor. The function computes
and returns the total cost for the purchase according to the following rules:
# of Monitors Cost in $
1-99
100-199
200+
Examples:
monitor_cost per monitor
monitor_cost for each of the first 100 monitors and 20% discount on the rest
20% discount on the first 200 monitors and 35% discount on the rest
Function Call
Expected Output
bulk_purchase(80, 75)
$6000.00
bulk_purchase(175, 120)
$19200.00
bulk_purchase (228, 180) $32076.00
[ ]
1 def bulk_purchase (monitors_to_buy, monitor_cost):
2
3
return 0 # DELETE THIS LINE and start coding here.
# Remember: end all of your functions with a return statement, not a print statement!
4
5 # Test cases
6 print (f'${bulk_purchase(80, 75):.2f}')
7 print (f'${bulk_purchase(175, 120):.2f}')
8 print (f'${bulk_purchase (228, 180):.2f}')
Expert Solution
![](/static/compass_v2/shared-icons/check-mark.png)
This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
This is a popular solution!
Trending now
This is a popular solution!
Step by step
Solved in 3 steps with 2 images
![Blurred answer](/static/compass_v2/solution-images/blurred-answer.jpg)
Knowledge Booster
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.Recommended textbooks for you
![Database System Concepts](https://www.bartleby.com/isbn_cover_images/9780078022159/9780078022159_smallCoverImage.jpg)
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
![Starting Out with Python (4th Edition)](https://www.bartleby.com/isbn_cover_images/9780134444321/9780134444321_smallCoverImage.gif)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
![Digital Fundamentals (11th Edition)](https://www.bartleby.com/isbn_cover_images/9780132737968/9780132737968_smallCoverImage.gif)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
![Database System Concepts](https://www.bartleby.com/isbn_cover_images/9780078022159/9780078022159_smallCoverImage.jpg)
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
![Starting Out with Python (4th Edition)](https://www.bartleby.com/isbn_cover_images/9780134444321/9780134444321_smallCoverImage.gif)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
![Digital Fundamentals (11th Edition)](https://www.bartleby.com/isbn_cover_images/9780132737968/9780132737968_smallCoverImage.gif)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
![C How to Program (8th Edition)](https://www.bartleby.com/isbn_cover_images/9780133976892/9780133976892_smallCoverImage.gif)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
![Database Systems: Design, Implementation, & Manag…](https://www.bartleby.com/isbn_cover_images/9781337627900/9781337627900_smallCoverImage.gif)
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
![Programmable Logic Controllers](https://www.bartleby.com/isbn_cover_images/9780073373843/9780073373843_smallCoverImage.gif)
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education