Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I'd like a tuple of each pair of values from a list, e.g.

[1,2,3,4]

Would yield:

(1,2)
(1,3)
(1,4)
(2,3)
(2,4)
(3,4)

This seems very one-line recipe ish but I can't quite get it to work.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
686 views
Welcome To Ask or Share your Answers For Others

1 Answer

That is actually the combinations of 2 elements from your list. Use itertools.combinations this way:

>>> your_list = [1,2,3,4]
>>> from itertools import combinations
>>> list(combinations(your_list,2))
# [(1, 2), (1, 3), (1, 4), (2, 3), (2, 4), (3, 4)]

If you need all pairs, use itertools.product

Or, you can use simple list-comprehension:

>>> your_list = [1,2,3,4]
>>> [(your_list[i], your_list[j]) for i in range(len(your_list)) for j in range(i+1,len(your_list))]
# [(1, 2), (1, 3), (1, 4), (2, 3), (2, 4), (3, 4)]

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...