Count how many times a part of a key appears in a dictionary python

Question:

I have the following dictionary and i want to count how many times keys appear, dictionary is very big.

a = { (1,2):3, (1,3):5, (2,1):6 }

and I want this result

1: 3 times
2: 2 times
3: 1 time
Asked By: Mike B

||

Answers:

In Python:

import collections
s = collections.defaultdict(int)
for j, k in a.keys():
   s[j] += 1
   s[k] += 1
for x in s.keys():
   print x + ": " + s[x] + " times"
Answered By: jdotjdot

Use itertools and collections.defaultdict

In [43]: a={(1,2):3,(1,3):5,(2,1):6}

In [44]: counts = collections.defaultdict(int)

In [45]: for k in itertools.chain.from_iterable(a.keys()):
   ....:     counts[k] += 1
   ....:     

In [46]: for k in counts:
    print k, ": %d times" %counts[k]
   ....:     
1 : 3 times
2 : 2 times
3 : 1 times
Answered By: inspectorG4dget
from collections import Counter
items = Counter(val[2] for val in dic.values())

Hope that sorts it.

Answered By: hd1

Use itertools.chain and a collections.Counter:

collections.Counter(itertools.chain(*a.keys()))

Alternatively:

collections.Counter(itertools.chain.from_iterable(a.keys()))
Answered By: mgilson
>>> from collections import Counter
>>> a = { (1,2):3, (1,3):5, (2,1):6 }
>>> 
>>> Counter(j for k in a for j in k)
Counter({1: 3, 2: 2, 3: 1})
Answered By: John La Rooy

Using python 3.2

from collections import Counter
from itertools import chain  

res = Counter(list(chain(*a)))
Answered By: raton
Categories: questions Tags: , , , ,
Answers are sorted by their score. The answer accepted by the question owner as the best is marked with
at the top-right corner.