import utils


words = ['how', 'often', 'does', 'each', 'string', 'occur', 'in', 'this', 'list', '?']

word2freq = utils.count_words(words)
print('word2freq', word2freq)


print('x', utils.x)
print('python', utils.python)