How to find all pairs combination of two tuples in Python

3 Answers

0 votes
tuple1 = (1, 3)
tuple2 = (5, 8)

combination = [] 

for val1 in tuple1:
    for val2 in tuple2:
        combination.append(tuple([val1, val2]))

for val1 in tuple2:
    for val2 in tuple1:
        combination.append(tuple([val1, val2]))

print(combination)



'''
run:

[(1, 5), (1, 8), (3, 5), (3, 8), (5, 1), (5, 3), (8, 1), (8, 3)]

'''

 



answered Nov 28, 2022 by avibootz
0 votes
from itertools import chain, product 

tuple1 = (1, 3)
tuple2 = (5, 8)

combination = list(chain(product(tuple1, tuple2), product(tuple2, tuple1))) 

print(combination)



'''
run:

[(1, 5), (1, 8), (3, 5), (3, 8), (5, 1), (5, 3), (8, 1), (8, 3)]

'''

 



answered Nov 28, 2022 by avibootz
0 votes
import itertools

tuple1 = (1, 3)
tuple2 = (5, 8)

combination = list(itertools.product(tuple1, tuple2)) + list(itertools.product(tuple2, tuple1))

print(combination)



'''
run:

[(1, 5), (1, 8), (3, 5), (3, 8), (5, 1), (5, 3), (8, 1), (8, 3)]
[(1, 5), (1, 8), (3, 5), (3, 8), (5, 1), (5, 3), (8, 1), (8, 3)]

'''

 



answered Nov 28, 2022 by avibootz
...