Skip to content

Instantly share code, notes, and snippets.

@codecademydev
Created April 24, 2017 10: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 codecademydev/7b15a322de6eeaae6407c9bdd757b7e0 to your computer and use it in GitHub Desktop.
Save codecademydev/7b15a322de6eeaae6407c9bdd757b7e0 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 shopping_list:
item += prices[key]
total == item + total
return total
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment