Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # list_compact.py
- def compact(lst):
- return list(filter(None, lst))
- print compact([0, 1, False, 2, '', 3, 'a', None, 's', {0: ''}, 34, 0.0, ()])
- # [ 1, 2, 3, 'a', 's', {0: ''}, 34 ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement