Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
All about the preparation solution in Clear category for Popular Words by evrur97
def popular_words(text: str, words: list) -> dict:
output = {}
text = text.lower().replace("\n"," ").split(" ")
for word in words:
output[word] = text.count(word)
return output
Aug. 1, 2019