[Solved] finding the greater value in tuples


Using a list comprehension:

[x for x in zipped if len(x) == x.count(0) + 1]

0

solved finding the greater value in tuples