Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How to remove an element from a list by index in Python?

I found the list.remove method but say I want to remove the last element, how do I do this? It seems like the default remove searches the list, but I don't want any search to be performed.

share|improve this question

2 Answers

up vote 143 down vote accepted

Use del and specify the element you want to delete with the index:

In [9]: a = range(10)
In [10]: a
Out[10]: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
In [11]: del a[-1]
In [12]: a
Out[12]: [0, 1, 2, 3, 4, 5, 6, 7, 8]

Here is the section from the tutorial.

share|improve this answer
6  
Thanks, what's the difference between pop and del? – Joan Venge Mar 9 '09 at 18:34
2  
del is overloaded. For example del a deletes the whole list – Brian R. Bondy Mar 9 '09 at 18:36
2  
another example del a[2:4], deletes elements 2 and 3 – Brian R. Bondy Mar 9 '09 at 18:37
48  
pop() returns the element you want to remove. del just deletes is. – unbeknown Mar 9 '09 at 19:14

You probably want pop:

a = ['a', 'b', 'c', 'd']
a.pop(1)

# now a is ['a', 'c', 'd']

By default, pop without any arguments removes the last item:

a = ['a', 'b', 'c', 'd']
a.pop()

# now a is ['a', 'b', 'c']
share|improve this answer
19  
Don't forget pop(-1). Yes, it's the default, but I prefer it so I don't have to remember which end pop uses by default. – S.Lott Mar 9 '09 at 18:43
1  
Good point... that does increase readability. – Jarret Hardie Mar 9 '09 at 19:19
6  
I disagree. If you know the programmer's etymology of "pop" (it's the the operation that removes and returns the top of a 'stack' data structure), then pop() by itself is very obvious, while pop(-1) is potentially confusing precisely because it's redundant. – CoreDumpError Apr 22 at 22:07

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.