I want the results of the function to be:
def unanimous(it): it1, it2 = itertools.tee(it) return all(it1) or not any(it2)