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
icon
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}')
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
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 2 images

Blurred answer
Knowledge Booster
Concept of Parenthesis
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.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Database System Concepts
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)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education