Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I had this task to read a file, store each character in a dict as key and increment value for each found key, this led to code like this:

chrDict = {}
with open("gibrish.txt", 'r') as file:
    for char in file.read():
        if char not in chrDict:
            chrDict[char] = 1
        else:
            chrDict[char] += 1

So this works ok but to me, atleast in Python, this looks really ugly. I tried different ways of using comprehension. Is there a way to do this with comprehension? I tried using locals() during creation, but that seemed to be really slow, plus if I've understood anything correctly locals would include everything in the scope in which the comprehension was launched, making things harder.

share|improve this question

2 Answers

up vote 7 down vote accepted

In Python 2.7, you can use Counter:

from collections import Counter

with open("gibrish.txt", 'r') as file:
    chrDict = Counter(f.read())
share|improve this answer
Here's Counter backported to python 2.5: code.activestate.com/recipes/576611-counter-class – Lauritz V. Thaulow Mar 17 '11 at 9:40
Counter seems like a really nice option. Thank you! – Guu Mar 17 '11 at 9:59

Use defaultdict:

from collections import defaultdict

chr_dict = defaultdict(int)
with open("gibrish.txt", 'r') as file:
    for char in file.read():
        chr_dict[char] += 1

If you really want to use list comprehensions, you can use this inefficient variant:

text = open("gibrish.txt", "r").read()
chr_dict = dict((x, text.count(x)) for x in set(text))
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.