Skip to content

Instantly share code, notes, and snippets.

@SebGogo
Created April 29, 2018 22:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save SebGogo/af5242d7470e38e84cbe0f2142e8b479 to your computer and use it in GitHub Desktop.
Save SebGogo/af5242d7470e38e84cbe0f2142e8b479 to your computer and use it in GitHub Desktop.
Grocery store shopping list
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:
if stock[item] > 0:
total = total + prices[item]
stock[item] = stock[item] - 1
return total
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment