Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Popular Words by melitaele
def popular_words(text: str, words: list) -> dict:
return {i:text.lower().split().count(i) for i in words}
April 16, 2021
Comments: