I want to generate a dict with the letters of the alphabet as the keys, something like
letter_count = {\'a\': 0, \'b\': 0, \'c\': 0}
what
There's this too:
import string letter_count = dict((letter, 0) for letter in string.ascii_lowercase)