Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Completely Empty by Sim0000
from collections import Iterable
def completely_empty(val):
return isinstance(val, Iterable) and all(completely_empty(item) for item in val)
July 24, 2017