Question: Write a function cost that accepts two arguments: 1 ) a shopping list of items, for brevity, each will be a single character string (

Write a function cost that accepts two arguments: 1) a shopping list of items, for brevity, each will be a
single character string (you do not need to validate this), and 2) a pricelist, a dictionary whose keys are items and
whose values are the price in dollars for that item. The function then returns the total cost in dollars of the items in
the shopping list. If some item does not occur in the pricelist dictionary, then $100 is charged for that item (see 2nd
example).
>>>cost(['A',?'B',?'A'],{'A':10.0,?'B':5.0})??# Each A costs 10,B costs 5
25.0
>>>cost(['A',?'B',?'A',?'C'],{'A':10.0,?'B':5.0})??# C not priced so costs 100
 Write a function cost that accepts two arguments: 1) a shopping

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!