erase list python code example
Example 1: 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 2: how to clear all elements in a list python
# this clear whole elements from list
thislist = ["apple", "banana", "cherry"]
thislist.clear()
Example 3: python delete from list
l = list[1, 2, 3, 4]
l.pop(0) #remove item by index
l.remove(3)#remove item by value
#also buth of the methods returns the item
Example 4: How do you clear a list
lst = [1,2,3,4,5,6,7,8,9,10]
lst.clear()