Skip to content

Instantly share code, notes, and snippets.

@codecademydev
Created September 27, 2018 08:13
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/2c55fc14a47d3f5fec624f6a168548f5 to your computer and use it in GitHub Desktop.
Save codecademydev/2c55fc14a47d3f5fec624f6a168548f5 to your computer and use it in GitHub Desktop.
Codecademy export
price = {'apple': 2}
stock = {'apple': 0}
for key in price:
print key
print "price: %s" % price[key]
print "stock: %s" % stock[key]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment