StoryTime / stats.py
yashkens's picture
add stats & joy/sadness level
057e447
def get_repetitions(words):
words = [w.lower() for w in words]
ratio = len(set(words))/len(words)
return ratio