<A Day AT the Supermaket>在这个项目中,
——于列表list和字典dictionaries中使用for循环
——编写一个函数中运用loops,lists和dictionaries
——应对变化的环境更新数据(比如,当我每卖出一个的时候香蕉的库存量就减1)
shopping_list = ["banana", "orange", "apple"]
stock = {
"banana": 6,
"apple": 0,
"orange": 32,
"pear": 15
}
prices = {
"banana": 4,
"apple": 2,
"orange": 1.5,
"pear": 3
}
# Write your code below!
def compute_bill(food):
total=0
for item in food:
while stock[item]>0:
total+=prices[item]
stock[item]=stock[item]-1
print total