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

Categories

0 votes
728 views
in Technique[技术] by (71.8m points)

python: getting all pairs of values from list

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

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

1 Answer

0 votes
by (71.8m points)

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)]

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...