remove all elements from a list of a particualr value code example
Example 1: remove all of same value python list
x = [1, 2, 3, 2, 2, 2, 3, 4]
list(filter(lambda a: a != 2, x))
Example 2: python list remove all elements
l = [1,2,3,4]
l.clear()
x = [1, 2, 3, 2, 2, 2, 3, 4]
list(filter(lambda a: a != 2, x))
l = [1,2,3,4]
l.clear()