Skip to content

Instantly share code, notes, and snippets.

@codecademydev
Created May 20, 2016 05:53
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/999e6d4c9c0ef6f0aab1a6357708c5f8 to your computer and use it in GitHub Desktop.
Save codecademydev/999e6d4c9c0ef6f0aab1a6357708c5f8 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 : %.2f." % prices[key]
print "stock : %d" % stock[key]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment