delete all elements in list 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: how to clear all elements in a list python
# this clear whole elements from list
thislist = ["apple", "banana", "cherry"]
thislist.clear()
Example 3: delete element list python
list.remove(element)
Example 4: delete all elements in list python
mylist = [1, 2, 3, 4]
mylist.clear()
print(mylist)
# []
Example 5: 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 6: python list remove all elements
l = [1,2,3,4]
l.clear()