Contact: aviboots(AT)netvision.net.il
39,868 questions
51,791 answers
573 users
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)] '''
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)] '''