.remove in python code example
Example 1: 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 2: python list .remove
a = [10, 20, 30, 20]
a.remove(20)
# a = [10, 30, 20]
# removed first instance of argument
Example 3: remove value from python list by value
>>> a = ['a', 'b', 'c', 'd']
>>> a.remove('b')
>>> print a
['a', 'c', 'd']
Example 4: python how to remove elements from a list
# Basic syntax:
my_list.remove(element)
# Note, .remove(element) removes the first matching element it finds in
# the list.
# Example usage:
animals = ['cat', 'dog', 'rabbit', 'guinea pig', 'rabbit']
animals.remove('rabbit')
print(animals)
--> ['cat', 'dog', 'guinea pig', 'rabbit'] # Note only 1st instance of
# rabbit was removed from the list.
# Note, if you want to remove all instances of an element, convert the
# list to a set and back to a list, and then run .remove(element) E.g.:
animals = list(set['cat', 'dog', 'rabbit', 'guinea pig', 'rabbit']))
animals.remove('rabbit')
print(animals)
--> ['cat', 'dog', 'guinea pig']
Example 5: delete from list python
list.remove(element)
Example 6: deleting a list in python
# deletes whole list
thislist = ["apple", "banana", "cherry"]
del thislist