Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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
image text in transcribed

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Accounting And Auditing Research And Databases Practitioner's Desk Reference

Authors: Thomas R. Weirich, Natalie Tatiana Churyk, Thomas C. Pearson

1st Edition

1118334426, 978-1118334423

More Books

Students also viewed these Databases questions

Question

6 What is the balanced scorecard method?

Answered: 1 week ago