remove object from list code example
Example 1: remove element from list python
# animals list
animals = ['cat', 'dog', 'rabbit', 'guinea pig']
# 'rabbit' is removed
animals.remove('rabbit')
# Updated animals List
print('Updated animals list: ', animals)
Example 2: delete from list python
list.remove(element)
Example 3: remove item from list python
l = list[1, 2, 3, 4]
for i in range(len(list)):
l.pop(i) # OR "l.remove(i)"
Example 4: delete element from list value
>>> a=[1,2,3]
>>> a.remove(2)
>>> a
[1, 3]
>>> a=[1,2,3]
>>> del a[1]
>>> a
[1, 3]
>>> a= [1,2,3]
>>> a.pop(1)
2
>>> a
[1, 3]
>>>
Example 5: how to remove a element from list in python and print it
pop(n) removes the element at the given index number and can print it