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 would be a fast way of generating that dict, rather than me having to type it in?
Thanks for your help.
(EDIT)
I find this solution more elegant:
import string d = dict.fromkeys(string.ascii_lowercase, 0)
2.1m questions
2.1m answers
60 comments
57.0k users