remove all elements from list python code example

Example 1: remove all occurrences of a character in a list python

>>> x = [1,2,3,2,2,2,3,4]
>>> list(filter(lambda a: a != 2, x))
[1, 3, 3, 4]

Example 2: how to clear all elements in a list python

# this clear whole elements from list
thislist = ["apple", "banana", "cherry"]
thislist.clear()

Example 3: remove item from list python

# removes item with given name in list
list = [15, 79, 709, "Back to your IDE"]
list.remove("Back to your IDE")

# removes last item in list
list.pop()

# pop() also works with an index...
list.pop(0)

# ...and returns also the "popped" item
item = list.pop()

Example 4: delete all elements in list python

mylist = [1, 2, 3, 4]
mylist.clear()

print(mylist)
# []

Example 5: how to clear a list in python

yourlist = [1,2,3,4,5,6,7,8]
del yourlist[:]

Example 6: delete a value in list python

list.remove(element)