2

I have a list L = [1,2,3]. What's the best way to get all the possible unique combinations of 2 elements from the list and output should get in iterative way like:

1st iter = 1 2, 2nd iter = 1 3 and 3rd iter = 2 3

martineau
  • 119,623
  • 25
  • 170
  • 301
user3064366
  • 1,509
  • 2
  • 11
  • 15

1 Answers1

6

The best way is to use the itertools.combinations, like this

from itertools import combinations
print [item for item in combinations(L, r = 2)]
# [(1, 2), (1, 3), (2, 3)]

You can iterate over that like this

for item in combinations(L, r = 2):
    print item
# (1, 2)
# (1, 3)
# (2, 3)

Or you can access the individual elements like this

for item in combinations(L, r = 2):
    print item[0], item[1]
thefourtheye
  • 233,700
  • 52
  • 457
  • 497