Skip to content

Instantly share code, notes, and snippets.

@codecademydev
Created March 28, 2017 06:26
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/7b45f44c69e67059c34706d23369c47e to your computer and use it in GitHub Desktop.
Save codecademydev/7b45f44c69e67059c34706d23369c47e to your computer and use it in GitHub Desktop.
Codecademy export
prices = {
"banana": 4,
"apple": 2,
"orange": 1.5,
"pear": 3}
stock = {
"banana": 6,
"apple": 0,
"orange": 32,
"pear": 15}
for key in prices:
print key
print "price: %s " % prices[key]
print "stock: %s " % stock[key]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment