#sample solution
groceries = ["banana", "orange","apple"]
stock = {"banana": 6,
"apple": 0,
"orange": 32,
"pear": 15
}
prices = {"banana": 4,
"apple": 2,
"orange": 1.5,
"pear": 3
}
def computeBill(groceries):
bill = 0
for fruit in groceries:
bill = bill + prices[fruit]
return bill
print computeBill(groceries)
No comments:
Post a Comment