とはfood
? ローカル変数ですか?グローバル変数リスト?なぜ使用できるのですか?リストですか?誰かがそのように機能する理由を説明できますかfor ... in
?
shopping_list = ["banana", "orange", "apple"]
stock = { "banana": 6,
"apple": 0,
"orange": 32,
"pear": 15
}
prices = { "banana": 4,
"apple": 2,
"orange": 1.5,
"pear": 3
}
def compute_bill(food):
total = 0
for item in food:
if stock[item] > 0:
stock[item] -= 1
total += prices[item]
else:
pass
return total
print compute_bill(food)