Question: [ Python ] Adjust the following code so that it will subtract the quantity ordered from the inventory: dictionary [ key ] [ ' sub

[Python] Adjust the following code so that it will subtract the quantity ordered from the inventory:
dictionary[key]['sub-key']= dictionary[key]['sub-key']- amount_to_subtract
Then, test the code by saving 5 to the variable quantity, and "salty sailor" to the variable item. Run your subtraction code, then call the stock for salty sailor. How many salty sailor cookies do we have after running your subtraction code?
Dictionary
monday_menu ={'choccy chipper': {'price': 2.50, 'stock': 120},
'fudgy pudgy': {'price': 2.50, 'stock': 120},
'key lime crime': {'price': 4.25, 'stock': 96},
'salty sailor': {'price': 4.40, 'stock': 60},
'blueberry blooper': {'price': 5.00, 'stock': 60}}
Variables:
item = input("What would you like to order? ")
quantity = int(input("How many would you like? "))

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!