Abbiamo due elenchi A e B:Come ottenere tutti i mapping tra due elenchi?
A = ['a','b','c']
B = [1, 2]
C'è un modo divinatorio per costruire l'insieme di tutte le mappe fra A e B che contiene 2^n (qui 2^3 = 8)? Cioè:
[(a,1), (b,1), (c,1)]
[(a,1), (b,1), (c,2)]
[(a,1), (b,2), (c,1)]
[(a,1), (b,2), (c,2)]
[(a,2), (b,1), (c,1)]
[(a,2), (b,1), (c,2)]
[(a,2), (b,2), (c,1)]
[(a,2), (b,2), (c,2)]
Utilizzando itertools.product
, è possibile ottenere tutte le tuple:
import itertools as it
P = it.product(A, B)
[p for p in P]
che dà:
Out[3]: [('a', 1), ('a', 2), ('b', 1), ('b', 2), ('c', 1), ('c', 2)]