2019-11-17 11:57:26 +00:00
|
|
|
# Created by sarathkaul on 17/11/19
|
|
|
|
from collections import defaultdict
|
|
|
|
|
|
|
|
|
|
|
|
def word_occurence(sentence: str) -> dict:
|
|
|
|
"""
|
|
|
|
>>> from collections import Counter
|
|
|
|
>>> SENTENCE = "a b A b c b d b d e f e g e h e i e j e 0"
|
|
|
|
>>> occurence_dict = word_occurence(SENTENCE)
|
|
|
|
>>> all(occurence_dict[word] == count for word, count
|
|
|
|
... in Counter(SENTENCE.split()).items())
|
|
|
|
True
|
|
|
|
"""
|
2020-01-18 12:24:33 +00:00
|
|
|
occurrence = defaultdict(int)
|
2019-11-17 11:57:26 +00:00
|
|
|
# Creating a dictionary containing count of each word
|
|
|
|
for word in sentence.split(" "):
|
2020-01-18 12:24:33 +00:00
|
|
|
occurrence[word] += 1
|
|
|
|
return occurrence
|
2019-11-17 11:57:26 +00:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
for word, count in word_occurence("INPUT STRING").items():
|
|
|
|
print(f"{word}: {count}")
|