The function of "Counter" make it very convenient to count the number of repeated items in two list. See the following example.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
>>> from collections import Counter | |
>>> x = [1, 1, 2, 3, 3, 4, 5, 6, 6] | |
>>> y = [1, 2, 2, 2, 3, 3, 4, 6, 6, 6] | |
>>> x_counter = Counter(x) | |
>>> y_counter = Counter(y) | |
>>> x_counter | |
Counter({1: 2, 3: 2, 6: 2, 2: 1, 4: 1, 5: 1}) | |
>>> y_counter | |
Counter({2: 3, 6: 3, 3: 2, 1: 1, 4: 1}) | |
>>> x_counter & y_counter #find the overlapping numbers | |
Counter({3: 2, 6: 2, 1: 1, 2: 1, 4: 1}) | |
>>> sum((x_counter & y_counter).values()) #summation of the total number of item overlapped | |
7 |
No comments:
Post a Comment