Horje
cartesian product of a list python Code Example
cartesian product of a list python
import itertools

somelists = [
   [1, 2, 3],
   ['a', 'b'],
   [4, 5]
]
for element in itertools.product(*somelists):
    print(element)




Python

Related
how to import data from csv to jupyter notebook Code Example how to import data from csv to jupyter notebook Code Example
renomear colunas pandas Code Example renomear colunas pandas Code Example
tkinter center frame Code Example tkinter center frame Code Example
python read text file Code Example python read text file Code Example
upload file in colab Code Example upload file in colab Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
8