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,859 questions

51,780 answers

573 users

How to use product() to get cartesian product of multiple lists in Python

2 Answers

0 votes
from itertools import *      

lst1 = ('A', 'B', 'C')      
lst2 = ('X', 'Y')      

p = list(product(lst1, lst2,))
print(p)


'''
run:

[('A', 'X'), ('A', 'Y'), ('B', 'X'), ('B', 'Y'), ('C', 'X'), ('C', 'Y')]

'''

 



answered May 25, 2019 by avibootz
edited May 25, 2019 by avibootz
0 votes
from itertools import *     
 
lst1 = ('A', 'B', 'C')      
lst2 = ('X', 'Y')      
lst3 = ('1', '2')  
 
p = list(product(lst1, lst2, lst3))
print(p)
 
 
'''
run:
 
[('A', 'X', '1'), ('A', 'X', '2'), ('A', 'Y', '1'), ('A', 'Y', '2'), ('B', 'X', '1'), ('B', 'X', '2'), ('B', 'Y', '1'), ('B', 'Y', '2'), ('C', 'X', '1'), ('C', 'X', '2'), ('C', 'Y', '1'), ('C', 'Y', '2')]
 
'''

 



answered May 25, 2019 by avibootz

Related questions

1 answer 93 views
1 answer 105 views
2 answers 267 views
2 answers 258 views
2 answers 198 views
...