finding the greater value in tuples

Using a list comprehension:

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

Leave a Comment