Count the duplicates in a list of tuples

后端 未结 5 1525
时光取名叫无心
时光取名叫无心 2021-01-18 15:45

I have a list of tuples: a = [(1,2),(1,4),(1,2),(6,7),(2,9)] I want to check if one of the individual elements of each tuple matches the same position/element i

5条回答
  •  孤街浪徒
    2021-01-18 16:12

    You can use a Counter

    from collections import Counter
    a = [(1,2),(1,4),(1,2),(6,7),(2,9)]
    counter=Counter(a)
    print counter
    

    This will output:

    Counter({(1, 2): 2, (6, 7): 1, (2, 9): 1, (1, 4): 1})
    

    It is a dictionary like object with the item (tuples in this case) as the key and a value containing the number of times that key was seen. Your (1,2) tuple is seen twice, while all others are only seen once.

    >>> counter[(1,2)]
    2
    

    If you are interested in each individual portion of the tuple, you can utilize the same logic for each element in the tuple.

    first_element = Counter([x for (x,y) in a])
    second_element = Counter([y for (x,y) in a])
    

    first_element and second_element now contain a Counter of the number of times values are seen per element in the tuple

    >>> first_element
    Counter({1: 3, 2: 1, 6: 1})
    >>> second_element
    Counter({2: 2, 9: 1, 4: 1, 7: 1})
    

    Again, these are dictionary like objects, so you can check how frequent a specific value appeared directly:

    >>> first_element[2]
    1
    

    In the first element of your list of tuples, the value 2 appeared 1 time.

提交回复
热议问题