Answers for "remove empty spaces in a list of strings 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
3

python remove spaces

string=' t e s t ' 
print(string.replace(' ',''))
Posted by: Guest on October-14-2020

Code answers related to "remove empty spaces in a list of strings python"

Python Answers by Framework

Browse Popular Code Answers by Language