Skip to content

Instantly share code, notes, and snippets.

@codecademydev
Created March 1, 2018 10:27
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 codecademydev/a17e6d954a5be6a21b2e9b5b2edf8c35 to your computer and use it in GitHub Desktop.
Save codecademydev/a17e6d954a5be6a21b2e9b5b2edf8c35 to your computer and use it in GitHub Desktop.
Codecademy export
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:
total = total + prices[item]
return total
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment