Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
text.lower().split().count solution in Clear category for Popular Words by flpo
def popular_words(text, words):
lower_count = text.lower().split().count
return {word: lower_count(word) for word in words}
April 12, 2018
Comments: