Answers for "emptying a list in python"

2

python remove empty list

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

how to clear a list in python

yourlist = [1,2,3,4,5,6,7,8]
del yourlist[:]
Posted by: Guest on April-08-2020

Code answers related to "emptying a list in python"

Python Answers by Framework

Browse Popular Code Answers by Language