delete an item in a list python code example
Example 1: delete element list python
list.remove(element)
Example 2: remove value from python list by value
>>> a = ['a', 'b', 'c', 'd']
>>> a.remove('b')
>>> print a
['a', 'c', 'd']
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)"