Created
April 16, 2019 02:43
-
-
Save octoparse/5c610d2b63012b459db62febab8f997e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for word in word_list: | |
# count all words frequency | |
if word in word_count_dict.keys(): | |
word_count_dict[word] += 1 | |
else: | |
word_count_dict[word] = 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment