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
cnt = Counter() for word in wordList: lSet = set(word) for letter in lSet: cnt[letter] +=1