Skip to content

Instantly share code, notes, and snippets.

@akaomy
Created November 14, 2018 23:08
Show Gist options
  • Save akaomy/5347585304b4da699989b4d0a634408a to your computer and use it in GitHub Desktop.
Save akaomy/5347585304b4da699989b4d0a634408a to your computer and use it in GitHub Desktop.
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 i in webster:
print(webster[i])
#output:
#A star of a popular children's cartoon show.
#Goes on the floor.
#A small amount.
#The sound a goat makes.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment