python remove specific item from list code example
Example 1: python remove element from list
myList.remove(item)
myList.pop(i)
Example 2: how to delete a particular element from a list in python
animals = ['cat', 'dog', 'dog', 'guinea pig', 'dog']
animals.remove('dog')
print('Updated animals list: ', animals)
Example 3: remove element from list python
animals = ['cat', 'dog', 'rabbit', 'guinea pig']
animals.remove('rabbit')
print('Updated animals list: ', animals)
Example 4: python remove by index
a = [0, 1, 2, 3, 4, 5]
el = a.pop(2)