I have a list which looks like this
[['Macau', 'United Kingdom', 'India'],
['United States', 'China'],
['China', 'Australia']]
And I want to have all possible combinations of those countries but combinations need to be limited to the small lists, I dont want them to mix.
For example I want to have
[('Macau', 'India'), ('United Kingdom', 'India'), ('Macau', 'United Kingdom'), ('United States', 'China')...]