how to remove one item from a list in python 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: python remove by index

a = [0, 1, 2, 3, 4, 5]
el = a.pop(2)

Example 3: 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

Example 4: delete item from list

listname.remove(element)