I am not sure that my question is correct but I don't know how to explain it otherwords. So I've got some lists like
a = ['11', '12']
b = ['21', '22']
c = ['31', '32']
And i need to get something like:
result = [
['11', '21', '31'],
['11', '21', '32'],
['11', '22', '31'],
['11', '22', '32'],
['12', '21', '31'],
['12', '21', '32'],
['12', '22', '31'],
['12', '22', '32']
]