Please help (I know that it's a silly question):
I have a list d = [' ABA', ' AAB', ' BAA', ' BAA', ' AAB', ' ABA']. How can I exclude elements that appear more than once?
|
|
|
Convert to a set then back again:
If order matters, you can pass the values through a dict that remembers the original indices. This approach, while expressible as a single expression, is considerably more complicated:
Of course, you don't have to use comprehensions. For this problem, a fairly simple solution is available:
Note that both the order-preserving solutions assume that you want to keep the first occurrence of each duplicated element. |
|||||||||||
|
|
To exclude items from the list that appear more than once:
For the example provided above, d will bind to an empty list. Others have posted good solutions to remove duplicates. |
|||
|
|
|
Lets say you got a list named I bet there are far more efficient ways though. |
|||
|
|
|
If you shouldn't have done that already, make sure to read the python docs on itertools, especially product(), permutations() and combinations(). |
|||
|
|
|
If order matters check out the If order doesn't matter, convert to a set. |
|||
|
|