remove list inside list python code example
Example 1: delete element of a list from another list python
l1 = ["a", "b", "c", "d", "e", "f"]
l2 = ["b", "c", "e"]
l1 = [elt for elt in l1 if elt not in l2]
Example 2: python remove element from list
myList.remove(item)
myList.pop(i)
Example 3: python how to remove elements from a list
my_list.remove(element)
animals = ['cat', 'dog', 'rabbit', 'guinea pig', 'rabbit']
animals.remove('rabbit')
print(animals)
--> ['cat', 'dog', 'guinea pig', 'rabbit']
animals = list(set['cat', 'dog', 'rabbit', 'guinea pig', 'rabbit']))
animals.remove('rabbit')
print(animals)
--> ['cat', 'dog', 'guinea pig']
Example 4: delete items from python list
l = list(range(10))
print(l)
del l[0]
print(l)
del l[-1]
print(l)
del l[6]
print(l)
Example 5: python remove list
list.remove(element)