Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Second solution in Clear category for Completely Empty by Moff
def completely_empty(val):
try:
iter(val)
except:
return False
if isinstance(val, str):
return val == ''
for v in val:
if not completely_empty(v):
return False
return True
July 25, 2017