Skip to content

Instantly share code, notes, and snippets.

@stevencombs
Last active December 20, 2015 23:49
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 stevencombs/6215546 to your computer and use it in GitHub Desktop.
Save stevencombs/6215546 to your computer and use it in GitHub Desktop.
# Print every definition in a dictionary
# A Codecademy Python (This is KEY!) assignment
# Dr. Steven B. Combs, coding novice
webster = {
"Aardvark" : "A star of a popular children's cartoon show.",
"Baa" : "The sound a goat makes.",
"Carpet": "Goes on the floor.",
"Dab": "A small amount."
}
for definition in webster:
print webster[definition]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment