Skip to content

Instantly share code, notes, and snippets.

@codecademydev
Created January 28, 2019 21:36
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/6fd90d4a0ecd4ab91cd9a0cfc07dda68 to your computer and use it in GitHub Desktop.
Save codecademydev/6fd90d4a0ecd4ab91cd9a0cfc07dda68 to your computer and use it in GitHub Desktop.
Codecademy export
def frequency_dictionary(words):
frequency = {}
for word in words:
frequency[word] = words.count(word)
return frequency
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment