Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
regex solution in Clear category for Popular Words by -dead-inside-
import re
popular_words = lambda T, W: {word:len(re.findall(r'(?i)\b%s\b' % word, T)) for word in W}
Nov. 2, 2019