セクション 5. 章 7
single
Challenge: Sales and Shipments
メニューを表示するにはスワイプしてください
In this challenge, you'll manage the daily stock levels of essential grocery store products over a week. By utilizing the range() function in conjunction with the len() function, you'll simulate sales impacts on inventory.
タスク
スワイプしてコーディングを開始
Update the stock levels using one loop.
-
Use a
forloop with index iteration (range) to go throughproducts. -
For each product, subtract the sold amount from units_sold using the same index:
products[i][1] = products[i][1] - units_sold[i]
At the end, print exactly:
Final stock levels: <products>
Expected final products:
[['Apples', 7], ['Bananas', 3]]
解答
すべて明確でしたか?
フィードバックありがとうございます!
セクション 5. 章 7
single
AIに質問する
AIに質問する
何でも質問するか、提案された質問の1つを試してチャットを始めてください