counting element occurrences in nested lists

前端 未结 3 1434
悲&欢浪女
悲&欢浪女 2021-01-13 16:58

This is probably quite a straightforward question, but I can\'t find an answer elsewhere so I\'ll ask. What is the best way to find the number of times an element appears in

3条回答
  •  被撕碎了的回忆
    2021-01-13 17:38

    Use a nested generator expression:

    Counter(x for sublist in my_list for x in sublist)
    

    To count the items in the first position, a different generator expression gets that item for counting:

    Counter(sublist[0] for sublist in my_list)
    

    Demo:

    >>> from collections import Counter
    >>> my_list=[['a','b','c','d'],['a','b','z','d'],['a','c','f','e'],['d','w','f','a']]
    >>> Counter(x for sublist in my_list for x in sublist)
    Counter({'a': 4, 'd': 3, 'c': 2, 'b': 2, 'f': 2, 'e': 1, 'w': 1, 'z': 1})
    >>> Counter(sublist[0] for sublist in my_list)
    Counter({'a': 3, 'd': 1})
    

提交回复
热议问题