Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
2-liner: Iterable solution in Creative category for Completely Empty by przemyslaw.daniel
def completely_empty(a, it=__import__('collections').Iterable):
return all(map(completely_empty, a)) if isinstance(a, it) else False
July 24, 2017
Comments: