emptying a list in python code example
Example 1: clear python list
your_list = [1,2,3,4,5,6,7,8,9,10]
your_list.clear() #List becomes [] empty
Example 2: python remove empty list
list2 = filter(None, list1)
Example 3: how to clear a list in python
yourlist = [1,2,3,4,5,6,7,8]
del yourlist[:]
Example 4: empty list in python
# Python program to declare
# empty list
# list is declared
a = []