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

Is there a built-in that removes duplicates from list in Python, whilst preserving order? I know that I can use a set to remove duplicates, but that destroys the original order. I also know that I can roll my own like this:

def uniq(input):
  output = []
  for x in input:
    if x not in output:
      output.append(x)
  return output

(Thanks to unwind for that code sample.)

But I'd like to avail myself of a built-in or a more Pythonic idiom if possible.

Related question: In Python, what is the fastest algorithm for removing duplicates from a list so that all elements are unique while preserving order?

share|improve this question
1  
The specification of the input list is a little bit unclear. The values don't even need to be grouped together: [2, 1, 3, 1]. So which values do you want to keep and which to delete? Is the list already sorted? Do you want superfluous values to be deleted from the original list? – unbeknown Jan 26 '09 at 16:03

15 Answers

up vote 152 down vote accepted

Here you have some alternatives: http://www.peterbe.com/plog/uniqifiers-benchmark

Fastest one:

def f7(seq):
    seen = set()
    seen_add = seen.add
    return [ x for x in seq if x not in seen and not seen_add(x)]

EDIT:

If you plan on using this function a lot on the same dataset, perhaps you would be better off with an ordered set: http://code.activestate.com/recipes/528878/

O(1) insertion, deletion and member-check per operation.

share|improve this answer
1  
f7 itself is obviously at least O(n), though each insertion, deletion and member-check is individually O(1) (with some definite hashing overhead!). You may want to mention that for some people who are less comfortable with runtime analysis. – llimllib Jan 26 '09 at 18:49
2  
this may be a stupid question, but why assign 'seen.add' to 'seen_add' instead of just calling seen.add? – ocdcoder Oct 15 '12 at 2:18
14  
@ocdcoder Python is a dynamic language, and resolving seen.add each iteration is more costly than resolving a local variable seen. – Markus Jarderot Oct 15 '12 at 4:49
3  
@JesseDhillon seen.add could have changed between iterations, and the runtime isn't smart enough to rule that out. To play safe, it has to check the object each time. -- If you look at the bytecode with dis.dis(f), you can see that it executes LOAD_ATTR for the add member on each iteration. ideone.com/tz1Tll – Markus Jarderot Mar 22 at 17:24
1  
@ColinDunklau Speed – Markus Jarderot May 8 at 18:15
show 5 more comments

If order doesn't matter - just convert list to set

ls = [1, 2, 3, 3]
print set(ls)  # set([1, 2, 3])

More about set type - http://docs.python.org/release/2.4.4/lib/types-set.html

share|improve this answer
welcome to SO. please try with ls = [1, 6, 2, 3] and you will see the problem with sets. remember : while preserving order – joaquin Dec 8 '11 at 6:56
14  
he clearly mentioned, 'whilst preserving order' – madCode Jun 19 '12 at 20:38
32  
But this answer is helpful for people like myself who were brought here by Google but actually don't care about order. – acron Oct 19 '12 at 8:26
2  
yep, it works a=[1,2,3,4,5,5] a=list(set[a]) – hwang Dec 21 '12 at 18:30
i just came across this last suggestion and it worked in my implementation where i wanted to only print unique values in order with sorted(list(set(original_list))). i am a newb though so not sure if it raises any undesired behaviours. – user1063287 May 1 at 9:50
from itertools import groupby
[ key for key,_ in groupby(sortedList)]

The list doesn't even have to be sorted, the sufficient condition is that equal values are grouped together.

Edit: I assumed that "preserving order" implies that the list is actually ordered. If this is not the case, then the solution from MizardX is the right one.

Community edit: This is however the most elegant way to "compress duplicate consecutive elements into a single element".

share|improve this answer
But this doesn't preserve order! – unbeknown Jan 26 '09 at 15:51
Hrm, this is problematic, since I cannot guarantee that equal values are grouped together without looping once over the list, by which time I could have pruned the duplicates. – Josh Glover Jan 26 '09 at 15:54
I assumed that "preserving order" implied that the list is actually ordered. – Rafał Dowgird Jan 26 '09 at 15:56
Ah, yes, I read sortedList as sorted(List) :-( But the input list can be in a different order. – unbeknown Jan 26 '09 at 15:56
1  
Added clarification. – Rafał Dowgird Jan 26 '09 at 15:59
show 2 more comments

You can reference a list comprehension as it is being built by the symbol '_[1]'.
For example, the following function unique-ifies a list of elements without changing their order by referencing its list comprehension.

def unique(my_list): 
    return [x for x in my_list if x not in locals()['_[1]']]

Demo:
l1 = [1, 2, 3, 4, 1, 2, 3, 4, 5]
l2 = [x for x in l1 if x not in locals()['_[1]']]
print l2

Output:
[1, 2, 3, 4, 5] 
share|improve this answer
1  
Please note it won't work in Python 2.7+. – d33tah Mar 17 at 11:29
>>> myList = [1, 2, 3, 3, 2, 2, 4, 5, 5]
>>> myList = list(set(myList))
>>> myList
[1, 2, 3, 4, 5]
share|improve this answer

For no hashable types (e.g. list of lists), based on MizardX's:

def f7_noHash(seq)
    seen = set()
    return [ x for x in seq if str( x ) not in seen and not seen.add( str( x ) )]
share|improve this answer
thanks! helpful – George Jan 4 at 19:38

MizardX's answer gives a good collection of multiple approaches.

This is what I came up with while thinking aloud:

mylist = [x for i,x in enumerate(mylist) if x not in mylist[i+1:]]
share|improve this answer
Your solution is nice, but it takes the last appearance of each element. To take the first appearance use: [x for i,x in enumerate(mylist) if x not in mylist[:i]] – Rivka Sep 2 '12 at 12:05
2  
Since searching in a list is an O(n) operation and you perform it on each item, the resulting complexity of your solution would be O(n^2). This is just unacceptable for such a trivial problem. – Nikita Volkov Sep 5 '12 at 15:06

Pop the duplicate in a list and hold uniques in source list :

>>> list1 = [ 1,1,2,2,3,3 ]
>>> [ list1.pop(i) for i in range(len(list1))[::-1] if list1.count(list1[i]) > 1 ]
[1, 2, 3]

I use [::-1] for read list in reverse order.

share|improve this answer

If you need one liner then maybe this would help:

reduce(lambda x, y: x + y if y[0] not in x else x, map(lambda x: [x],lst))

... should work but correct me if i'm wrong

share|improve this answer

This is fast but...

l = list(set(l))

... it doesn't work if your list items aren't hashable.

A more generic approach is:

l = reduce(lambda x, y: x if y in x else x + [y], l, [])

... it should work for all cases.

share|improve this answer
Can anyone explain why this was downvoted? I'm a Python newb but this is way, way more readable than all the garbage above. – Coderer Sep 4 '12 at 15:41
I didn't downvote it, but my guess is it got downvoted because someone stopped reading after the first option, which doesn't preserve the order (as the OP requests). Or they read the second one and downvoted it because Guido hates reduce - or because it's not a very good algorithm (it looks pretty inefficient to me, because of how the test is done and how the result is constructed). (Downvoters should be forced to leave comments.) – Matt Curtis Sep 6 '12 at 5:56
-1 because it performs worse then the native for-loop implementation mentioned by OP, so certainly not a better approach – Optimus Sep 18 '12 at 21:16
for i in range(len(theArray)-1,-1,-1): #get the indexes in reverse
    if theArray.count(theArray[i]) > 1:
        theArray.pop(i)
share|improve this answer

If your situation allows, you might consider removing duplicates as you load:

Say you have a loop that is pulling in data and uses list1.append(item)...

list1 = [0, 2, 4, 9]
for x in range(0, 7):
  list1.append(x)

That gives you some duplicates: [0, 2, 4, 9, 0, 1, 2, 3, 4, 5, 6]

But if you did:

list1 = [0, 2, 4, 9]
for x in range(0, 7)
  if x not in list1:
    list1.append(x)

You get no duplicates and the order is preserved: [0, 2, 4, 9, 1, 3, 5, 6]

share|improve this answer
input = ['1', '2', '3', '3', '6', '4', '5', '6']
unique = []
[unique.append(item) for item in input if item not in unique]
unique
>>> ['1', '2', '3', '6', '4', '5']
share|improve this answer

This works for me.

a = [1,2,4,5,5,1,3,2]
list(set(a))   # it will return [1,2,3,4,5]
share|improve this answer
2  
-1 doesn't preserve order --- read other answers before starting your own – John Machin Apr 1 '12 at 22:34

Short and sweet:

[j for i,j in enumerate(l) if not (i < len(l)-1 and j is l[i+1]) and not (i > 0 and j is l[i-1])]
share|improve this answer
13  
This is neither short nor sweet. – twneale Apr 22 '11 at 2:29
1  
-1 because (1) you've used is instead of == -- [1000,2*500,2,999+1,10001-1] produces [1000,1000,2,1000,1000] (2) it removes ALL instances of ADJACENT bunches of the same object -- for input of [1,1,2,1,1] it produces [2] instead of [1,2](3) you've used l as a variable name – John Machin Apr 22 '11 at 2:35
1  
-1, This may be trying to answer another question like "compress runs of duplicate elements into one/zero element". However running it with l=[1,2,2,2,5,1,2,1,1,1,1,1,3,3,6,3,2] results in [1,5,1,2,2]. This is thus incorrect nomatter what the interpretation of the question is. – ninjagecko Jul 13 '11 at 22:44

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.