I have a list of strings:
l = ['a', 'b', 'c']
I want to create all possible combinations of the list elements in groups of different sizes. I would prefer this to be a list of tuples of tuples, but it could also be a list of lists of lists, etc. The orders of the tuples, and of the tuples in the tuples, does not matter. No list element can be repeated in either the tuples or the tuples of tuples. For the above list, I would expect something like:
[(('a'),('b'),('c')),
(('a', 'b'), ('c')),
(('a', 'c'), ('b')),
(('b', 'c'), ('a')),
(('a', 'b', 'c'))]
Any help is greatly appreciated.
EDIT: I do require that each of the tuples in the list contain all of the elements of l. senderle and Antimony, you are both correct regarding the omissions.
a, (b,c,d)in there too? – Antimony Oct 12 '12 at 1:25itertools.combinations(iterable, r)may be helpful for you. – Satoru.Logic Oct 12 '12 at 1:30(('a', 'b'), ('c', 'd')),(('b', 'c'), ('a', 'd')), and(('a', 'c'), ('b', 'd'))belong in the output too? – senderle Oct 12 '12 at 2:12