Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Completely Empty by rodka81
def completely_empty(val):
try:
for x in val:
if not completely_empty(x):
return False
except TypeError:
return False
return True
Sept. 5, 2018