python program to remove empty list from a list code example
Example 1: python remove empty string from list
def compact(lst):
return list(filter(None, lst))
compact([0, 1, False, 2, '', 3, 'a', 's', 34]) # [ 1, 2, 3, 'a', 's', 34 ]
Example 2: empty list in python
# Python program to declare
# empty list
# list is declared
a = []