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 words in wordList: for letters in set(words): cnt[letters]+=1