Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,926 questions

51,859 answers

573 users

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
...