Hi how can i get a mapped list to print all possible combinations
say the dict mapping is = {1:[a,b],2:[c,d]……
so with the list [1,2] and the sample mapping above I would like to print out all possible combinations of the pairs a,d against c,d into a list
results in
Edit it sounds like what you actually want is
which gives
strings == ['ac', 'ad', 'bc', 'bd'].