Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Duh solution in Clear category for Completely Empty by StefanPochmann
def completely_empty(val):
try:
return all(map(completely_empty, val))
except:
return False
July 13, 2017
Comments: