summaryrefslogtreecommitdiff
path: root/progs/a365.py
blob: b7866e81e977492d5009bf6829be2ad347dd15b2 (plain)
1
2
3
def remove_empty(tuple1): #L = [(), (), ('',), ('a', 'b'), ('a', 'b', 'c'), ('d')]
   tuple1 = [t for t in tuple1 if t]
   return tuple1