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

Hurry up

Define a function called get_total_cost(items_dict, items_list) which takes two parameters as input. The first parameter is a dictionary where the keys represent the name of an item for sale, and the values represent
the cost of that item. The second parameter is a list containing the names of items to be purchased. The function should calculate the total cost associated with all of the items to be purchased.
For example, if the dictionary of item names and costs is:
items = {'apple': 12, "banana': 7, 'cherry': 10, 'dragonfruit': 35}
and the list of items to be purchased is:
selected= ['apple', 'apple', 'cherry', 'dragonfruit', 'cherry']
Then the total cost should be 79.
However, you must guard against two types of exceptions that could occur when calculating the total cost:
• KeyError: this could occur if an item on the list is not a valid key in the dictionary
• TypeError: this could occur if the cost of an item in the dictionary is not a number (in which case, the addition will fail)
You should handle any exceptions by simply ignoring any invalid values. You should calculate the result for all valid values.
Your function should return a tuple consisting of:
• The total cost
• The number of KeyErrors that were handled
• The number of TypeErrors that were handled
For example:
Test
Result
(79, 0, 0)
items = {'apple': 12, "banana': 7, "cherry': 10, 'dragonfruit': 35}
selected= ['apple', 'apple', 'cherry', 'dragonfruit', 'cherry']
cost = get_total_cost(items, selected)
print(cost)
(44, 1, 0)
items = {'apple': 12, "banana': 7, "cherry': 10, 'dragonfruit': 35}
selected = ['apple', 'apple', 'cherry', 'eggplant', 'cherry']
cost = get_total_cost(items, selected)
print(cost)
items = {'apple': 'XXXXX', 'banana': 7, "cherry': 10, 'dragonfruit': 35) (55, 0, 2)
selected= ['apple', 'apple', 'cherry', 'dragonfruit', 'cherry']
cost = get_total_cost(items, selected)
print(cost)
Transcribed Image Text:Define a function called get_total_cost(items_dict, items_list) which takes two parameters as input. The first parameter is a dictionary where the keys represent the name of an item for sale, and the values represent the cost of that item. The second parameter is a list containing the names of items to be purchased. The function should calculate the total cost associated with all of the items to be purchased. For example, if the dictionary of item names and costs is: items = {'apple': 12, "banana': 7, 'cherry': 10, 'dragonfruit': 35} and the list of items to be purchased is: selected= ['apple', 'apple', 'cherry', 'dragonfruit', 'cherry'] Then the total cost should be 79. However, you must guard against two types of exceptions that could occur when calculating the total cost: • KeyError: this could occur if an item on the list is not a valid key in the dictionary • TypeError: this could occur if the cost of an item in the dictionary is not a number (in which case, the addition will fail) You should handle any exceptions by simply ignoring any invalid values. You should calculate the result for all valid values. Your function should return a tuple consisting of: • The total cost • The number of KeyErrors that were handled • The number of TypeErrors that were handled For example: Test Result (79, 0, 0) items = {'apple': 12, "banana': 7, "cherry': 10, 'dragonfruit': 35} selected= ['apple', 'apple', 'cherry', 'dragonfruit', 'cherry'] cost = get_total_cost(items, selected) print(cost) (44, 1, 0) items = {'apple': 12, "banana': 7, "cherry': 10, 'dragonfruit': 35} selected = ['apple', 'apple', 'cherry', 'eggplant', 'cherry'] cost = get_total_cost(items, selected) print(cost) items = {'apple': 'XXXXX', 'banana': 7, "cherry': 10, 'dragonfruit': 35) (55, 0, 2) selected= ['apple', 'apple', 'cherry', 'dragonfruit', 'cherry'] cost = get_total_cost(items, selected) print(cost)
Expert Solution
steps

Step by step

Solved in 4 steps with 3 images

Blurred answer
Knowledge Booster
Business Models
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