4

私はリストのリストを持っています:

[[1,2], [1,2,4], [1,2,3,4], [4,5,6], [1,9], [1,2,4]]

次の形式でリスト統計を取得したいと思います。

number of lists with 2 elements : 2
number of lists with 3 elements : 3
number of lists with 4 elements : 1

これを行うための最良の(最もpythonicな)方法は何ですか?

4

3 に答える 3

6

私はcollections.defaultdictを使用します:

d = defaultdict(int)
for lst in lists:
   d[len(lst)] += 1
于 2012-08-23T14:45:02.257 に答える
6
for k, v in sorted(collections.Counter(len(i) for i in list_of_lists).iteritems()):
    print 'number of lists with %s elements : %s' % (k, v)
于 2012-08-23T14:45:10.493 に答える
6
>>> from collections import Counter
>>> seq = [[1,2], [1,2,4], [1,2,3,4], [4,5,6], [1,9], [1,2,4]]
>>> for k, v in Counter(map(len, seq)).most_common():
        print 'number of lists with {0} elements: {1}'.format(k, v)


number of lists with 3 elements: 3
number of lists with 2 elements: 2
number of lists with 4 elements: 1
于 2012-08-23T14:46:49.277 に答える