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