def get_repetitions(words): words = [w.lower() for w in words] ratio = len(set(words))/len(words) return ratio