Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Solutions for "Popular Words" solution in Uncategorized category for Popular Words by kaisa.kucherenko
def popular_words(text: str, words: list) -> dict:
lst_text = list(text.lower().split())
data = {word:lst_text.count(word) for word in words}
return data
May 25, 2020
Comments: