Answers for "write a program that removes all empty strings from a list in python"

4

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 ]
Posted by: Guest on February-16-2021
2

remove empty strings from list python

without_empty_strings = [string for string in a_list if string != ""]
Posted by: Guest on February-06-2021

Code answers related to "write a program that removes all empty strings from a list in python"

Python Answers by Framework

Browse Popular Code Answers by Language