Answers for "how to remove empty lists 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
1

python remove empty values from list

import pandas as pd

def file_to_list(file):
    rtn: object = []
    file_object: object = open(file, "r")
    rtn: object = file_object.read().splitlines()
    file_object.close()
    return list(filter(None, pd.unique(rtn).tolist())) # Remove Empty/Duplicates Values
    pass

# Example #    
data_from_file: object = file_to_list('filename.txt')
Posted by: Guest on October-20-2021
2

python remove empty list

list2 = filter(None, list1)
Posted by: Guest on May-22-2020

Code answers related to "how to remove empty lists from a list in python"

Python Answers by Framework

Browse Popular Code Answers by Language