Using a dictionary to count the items in a list [duplicate]
Mia Lopez
I'm new to Python and I have a simple question, say I have a list of items:
['apple','red','apple','red','red','pear']Whats the simpliest way to add the list items to a dictionary and count how many times the item appears in the list.
So for the list above I would like the output to be:
{'apple': 2, 'red': 3, 'pear': 1} 3 8 Answers
in 2.7 and 3.1 there is special Counter dict for this purpose.
>>> from collections import Counter
>>> Counter(['apple','red','apple','red','red','pear'])
Counter({'red': 3, 'apple': 2, 'pear': 1}) 8 I like:
counts = dict()
for i in items: counts[i] = counts.get(i, 0) + 1.get allows you to specify a default value if the key does not exist.
6Simply use list property count\
i = ['apple','red','apple','red','red','pear']
d = {x:i.count(x) for x in i}
print doutput :
{'pear': 1, 'apple': 2, 'red': 3} 4 >>> L = ['apple','red','apple','red','red','pear']
>>> from collections import defaultdict
>>> d = defaultdict(int)
>>> for i in L:
... d[i] += 1
>>> d
defaultdict(<type 'int'>, {'pear': 1, 'apple': 2, 'red': 3}) 1 I always thought that for a task that trivial, I wouldn't want to import anything. But i may be wrong, depending on collections.Counter being faster or not.
items = "Whats the simpliest way to add the list items to a dictionary "
stats = {}
for i in items: if i in stats: stats[i] += 1 else: stats[i] = 1
# bonus
for i in sorted(stats, key=stats.get): print("%d×'%s'" % (stats[i], i))I think this may be preferable to using count(), because it will only go over the iterable once, whereas count may search the entire thing on every iteration. I used this method to parse many megabytes of statistical data and it always was reasonably fast.
3Consider collections.Counter (available from python 2.7 onwards).
How about this:
src = [ 'one', 'two', 'three', 'two', 'three', 'three' ]
result_dict = dict( [ (i, src.count(i)) for i in set(src) ] )This results in
2{'one': 1, 'three': 3, 'two': 2}
L = ['apple','red','apple','red','red','pear']
d = {}
[d.__setitem__(item,1+d.get(item,0)) for item in L]
print d Gives {'pear': 1, 'apple': 2, 'red': 3}