Answers for "drop none from list python"

8

python delete none from list

>>> L = [0, 23, 234, 89, None, 0, 35, 9]
>>> [x for x in L if x is not None]
[0, 23, 234, 89, 0, 35, 9]
Posted by: Guest on September-07-2020
0

drop none from list python

# using filter()
# to remove None values in list
res = list(filter(None, test_list))
Posted by: Guest on August-02-2021

Code answers related to "drop none from list python"

Python Answers by Framework

Browse Popular Code Answers by Language