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