“Python Usuń pusty ciąg z listy” Kod odpowiedzi

Python Usuń pusty ciąg z listy

def compact(lst):
    return list(filter(None, lst))

compact([0, 1, False, 2, '', 3, 'a', 's', 34])     # [ 1, 2, 3, 'a', 's', 34 ]
VasteMonde

Python Usuń pusty ciąg z listy

command_list = list(filter(None, command_list))
MzanziLegend

Usuń puste sznurki z listy Python

without_empty_strings = [string for string in a_list if string != ""]
Frantic Falcon

Python Usuń pustą listę

list2 = filter(None, list1)
Fancy Fly

Usuń element według wartości z listy, jeśli wykonany z białych przestrzeni Python

[name for name in starring if name.strip()]
Comfortable Cow

Python Usuń puste wartości z listy

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')    
Bitm4p

Odpowiedzi podobne do “Python Usuń pusty ciąg z listy”

Pytania podobne do “Python Usuń pusty ciąg z listy”

Więcej pokrewnych odpowiedzi na “Python Usuń pusty ciąg z listy” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu