So I have a list of words `wordList = list().\' Right now, I am counting each letter in each of the words throughout the whole list using this code
cnt = C
Add a set call:
set
cnt = Counter() for word in wordList: for letter in set(word): cnt[letter]+=1