Sorry for the simple question, but I'm having a hard time finding the answer.

When I compare 2 lists, I want to know if they are "equal" in that they have the same contents, but in different order.

Ex:

x = ['a', 'b']
y = ['b', 'a']

I want x == y to evaluate to True.

link|improve this question
1  
In the general case it is quite difficult. If you have extra conditions on the values it can be a lot easier. Are they all hashable? Are they all sortable? etc. – gnibbler Jan 15 at 0:47
feedback

1 Answer

up vote 15 down vote accepted

You can simply check whether the multisets with the elements of x and y are equal:

import collections
collections.Counter(x) == collections.Counter(y)

If the elements are sortable, another alternative is

sorted(x) == sorted(y)

If the elements are unique, you can also convert to sets:

set(x) == set(y)
link|improve this answer
great! the items are hashable and sortable. also, i didnt know that set would sort them the same way (is this accurate?). thanks again – toofly Jan 15 at 1:03
@toofly set doesn't sort them at all. Instead, it uses a faster hash table. – phihag Jan 15 at 1:07
@toofly, as phihag said, set doesn't sort the elements, however, the same elements on different sets will always be on the same order, I don't know if you get the difference. This is because their hash will always be the same. – julio.alegria Jan 15 at 4:34
feedback

Your Answer

 
or
required, but never shown

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