More common words

main
Bob Mottram 2021-01-11 14:01:26 +00:00
parent aac3eb816c
commit 7d8719161f
1 changed files with 3 additions and 1 deletions

View File

@ -479,7 +479,9 @@ def _updateWordFrequency(content: str, wordFrequency: {}) -> None:
wordsList = plainText.split(' ')
commonWords = (
'that', 'some', 'about', 'then', 'they', 'were',
'also', 'from', 'with', 'this', 'have', 'more'
'also', 'from', 'with', 'this', 'have', 'more',
'need', 'here', 'would', 'these', 'into', 'very',
'well', 'when', 'what', 'your'
)
for word in wordsList:
wordLen = len(word)