Menu

gitpiper

compact python Code Snippet in 2024

listbeginner

Last Updated: 20 April 2024

Removes falsy values from a list.

  • Use filter() to filter out falsy values (False, None, 0, and "").
def compact(lst): return list(filter(None, lst))
compact([0, 1, False, 2, '', 3, 'a', 's', 34]) # [ 1, 2, 3, 'a', 's', 34 ]

python snippet similar to compact For You in April 2024

Subscribe to our Newsletter

Subscribe to get resources directly to your inbox. You won't receive any spam! ✌️

© 2024 GitPiper. All rights reserved

Rackpiper Technology Inc

Company

About UsBlogContact

Subscribe to our Newsletter

Subscribe to get resources directly to your inbox. You won't receive any spam! ✌️