セクション 4. 章 11
single
Challenge: Pricing Adjustment Capstone
メニューを表示するにはスワイプしてください
You are managing a grocery store's system, and you need to maintain decision-making for the inventory, track prices, and perform checks to determine if actions like restocking or removing items from the inventory are needed based on their price or stock.
タスク
スワイプしてコーディングを開始
Manage a grocery inventory using a dictionary. You will do three simple things: update one price, add one new item, and restock one item. Print short status messages so you can see what changed.
-
Create the Dictionary Define
grocery_inventorywith these items and details (category, price, stock):"Milk":("Dairy", 3.50, 8)"Eggs":("Dairy", 5.50, 30)"Bread":("Bakery", 2.99, 15)
-
Discount Eggs
- If the price of
"Eggs"is greater than5, print:Eggs are too expensive, reducing the price by $1.and reduce the price by1.
- If the price of
-
Add a New Item
- Add
"Tomatoes"with details:("Produce", 1.20, 30) - Print:
Inventory after adding Tomatoes: <grocery_inventory>
- Add
-
Restock Milk
- If the stock of
"Milk"is less than10, print:Milk needs to be restocked. Increasing stock by 20 units.and increase the stock by20.
- If the stock of
-
Final Print
- Print:
Updated inventory: <grocery_inventory>
- Print:
解答
すべて明確でしたか?
フィードバックありがとうございます!
セクション 4. 章 11
single
AIに質問する
AIに質問する
何でも質問するか、提案された質問の1つを試してチャットを始めてください