remove index from list python code example
Example 1: how to remove an element in a list by index python
list = [0, 1, 2, 3, 4, 5]
print(list)
del list[0]
print(list)
del list[-2]
print(list)
del list[0:2]
print(list)
Example 2: python remove element from list
myList.remove(item)
myList.pop(i)
Example 3: how to remove element from specific index in list in python
list.pop(index)
Example 4: remove element from list
>>> a = [0, 2, 3, 2]
>>> a.remove(2)
>>> a
[0, 3, 2]
Example 5: delete a value in list python
list.remove(element)
Example 6: remove value from python list by value
>>> a = ['a', 'b', 'c', 'd']
>>> a.remove('b')
>>> print a
['a', 'c', 'd']