How to generate cartesian product of two lists in Python

2 Answers

0 votes
from itertools import product
  
lst = [1, 2, 3]  

print(list(product(lst, [3, 4])))



'''
run:

[(1, 3), (1, 4), (2, 3), (2, 4), (3, 3), (3, 4)]

'''

 



answered Dec 9, 2019 by avibootz
0 votes
from itertools import product
  
lists = [[1,2,3], [3,4]]

print(list(product(*lists)))



'''
run:

[(1, 3), (1, 4), (2, 3), (2, 4), (3, 3), (3, 4)]

'''

 



answered Dec 9, 2019 by avibootz

Related questions

2 answers 301 views
1 answer 130 views
1 answer 118 views
2 answers 226 views
...