How to generate cartesian product in Python

2 Answers

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

print(list(product(lst, repeat = 2)))



'''
run:

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

'''

 



answered Dec 9, 2019 by avibootz
0 votes
from itertools import product
  
s = 'abc'

print(list(product(s, repeat = 2)))



'''
run:

[('a', 'a'), ('a', 'b'), ('a', 'c'), ('b', 'a'), ('b', 'b'), ('b', 'c'), 
('c', 'a'),('c', 'b'), ('c', 'c')]

'''

 



answered Dec 9, 2019 by avibootz

Related questions

2 answers 298 views
2 answers 288 views
1 answer 165 views
1 answer 117 views
1 answer 130 views
...