There is a list of object parameters, for example:
N Событие Исход 123213 Реал Мадрид-Барселона 1 123214 Фиорентина-Аталанта X 123213 Реал Мадрид-Барселона 2 123213 Реал Мадрид-Барселона 1 123215 Венеция-Перуджа X 123213 Реал Мадрид-Барселона 1
It is necessary to count the number of duplicates. Expected to get something like this:
N Событие 1 X 2 123213 Реал Мадрид-Барселона 3 0 1 123214 Фиорентина-Аталанта 0 1 0 123215 Венеция-Перуджа 0 1 0
You can of course create a list of lists (a list of tuples, etc.), and when added to it, check if there is a completely identical set, if not, then add. And then count the variety sets.
Maybe there is a more elegant way? Maybe somehow using the dataframe in pandas