The most efficient way to remove first N elements in a list?

PythonPerformanceListPython 2.7Python 3.x

Python Problem Overview


I need to remove the first n elements from a list of objects in Python 2.7. Is there an easy way, without using loops?

Python Solutions


Solution 1 - Python

You can use list slicing to archive your goal.

Remove the first 5 elements:

n = 5
mylist = [1,2,3,4,5,6,7,8,9]
newlist = mylist[n:]
print newlist

Outputs:

[6, 7, 8, 9]

Or del if you only want to use one list:

n = 5
mylist = [1,2,3,4,5,6,7,8,9]
del mylist[:n]
print mylist

Outputs:

[6, 7, 8, 9]

Solution 2 - Python

Python lists were not made to operate on the beginning of the list and are very ineffective at this operation.

While you can write

mylist = [1, 2 ,3 ,4]
mylist.pop(0)

It's very inefficient.


If you only want to delete items from your list, you can do this with del:

del mylist[:n]

Which is also really fast:

In [34]: %%timeit
help=range(10000)
while help:
    del help[:1000]
   ....:
10000 loops, best of 3: 161 µs per loop

If you need to obtain elements from the beginning of the list, you should use collections.deque by Raymond Hettinger and its popleft() method.

from collections import deque

deque(['f', 'g', 'h', 'i', 'j'])

>>> d.pop()                          # return and remove the rightmost item
'j'
>>> d.popleft()                      # return and remove the leftmost item
'f'

A comparison:

list + pop(0)

In [30]: %%timeit
   ....: help=range(10000)
   ....: while help:
   ....:     help.pop(0)
   ....:
100 loops, best of 3: 17.9 ms per loop

deque + popleft()

In [33]: %%timeit
help=deque(range(10000))
while help:
    help.popleft()
   ....:
1000 loops, best of 3: 812 µs per loop

Solution 3 - Python

l = [1, 2, 3, 4, 5]
del l[0:3] # Here 3 specifies the number of items to be deleted.

This is the code if you want to delete a number of items from the list. You might as well skip the zero before the colon. It does not have that importance. This might do as well.

l = [1, 2, 3, 4, 5]
del l[:3] # Here 3 specifies the number of items to be deleted.

Solution 4 - Python

Try to run this code:

del x[:N]

Solution 5 - Python

Let's say you have this list:

mylist = [1,2,3,4,5,6,7,8,9]

And you want to remove the x last elements and store them in another list

newlist = [mylist.pop() for _ in range(x)]

You can modify the argument you pass to pop in order to remove elements from the beginning

newlist = [mylist.pop(0) for _ in range(x)]

Or leave the first element and remove x elements after

newlist = [mylist.pop(1) for _ in range(x)]

Solution 6 - Python

l = [5,1,4,2,3,6]

Sort the list from smallest to largest

l.sort()

Remove the first 2 items in the list

for _ in range(2)
    l.remove(l[0])

Print the list

print(l)

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionRedVelvetView Question on Stackoverflow
Solution 1 - PythonAviónView Answer on Stackoverflow
Solution 2 - PythonSebastian WoznyView Answer on Stackoverflow
Solution 3 - Pythonuser5077528View Answer on Stackoverflow
Solution 4 - PythonMangu Singh RajpurohitView Answer on Stackoverflow
Solution 5 - PythonLiteApplicationView Answer on Stackoverflow
Solution 6 - PythonAbidView Answer on Stackoverflow