Skip to content

Home

Compact list

Removes falsy values from a list.

def compact(lst):
  return list(filter(None, lst))

compact([0, 1, False, 2, '', 3, 'a', 's', 34]) # [ 1, 2, 3, 'a', 's', 34 ]

More like this

Start typing a keyphrase to see matching snippets.