Answers for "python while empty list"

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 how to make an empty list

list = []
Posted by: Guest on April-16-2021

Python Answers by Framework

Browse Popular Code Answers by Language