delete value at index python code example
Example 1: how to delete an item from a list python
myList = ['Item', 'Item', 'Delete Me!', 'Item']
del myList[2]
Example 2: 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 3: delete item from list
listname.remove(element)
Example 4: removing things from lsit
l = list(range(10))
print(l)
l.clear()
print(l)