The reason you are failing is b.split('/') is not yielding a 2-tuple. A double list comprehension implies you want to treat the cartesian product as a flat stream and not a matrix. That is:
>>> [x+'/'+y for y in 'ab' for x in '012']
['0/a', '1/a', '2/a', '0/b', '1/b', '2/b']
# desire output 0,1,2
# not output 0,1,2,0,1,2
You are not looking for 6 answers, you are looking for 3. What you want is:
>>> [frac.split('/')[0] for frac in c.split(',')]
['A', 'C', 'E']
Even if you used a nested list comprehension, you would get you the cartesian product (3x2=6) and realize that you have duplicate information (you don't need the x2):
>>> [[x+'/'+y for y in 'ab'] for x in '012']
[['0/a', '0/b'], ['1/a', '1/b'], ['2/a', '2/b']]
# desire output 0,1,2
# not [0,0],[1,1],[2,2]
The following are equivalent ways to do things. I sort of gloss over the major difference between generators and lists in this comparison though.
Cartesian product in list form:
((a,b,c) for a in A for b in B for c in C)
#SAME AS#
((a,b,c) for (a,b,c) in itertools.product(A,B,C))
#SAME AS#
for a in A:
for b in B:
for c in C:
yield (a,b,c)
Cartesian product in matrix form:
[[[(a,b,c) for a in A] for b in B] for c in C]
#SAME AS#
def fC(c):
def fB(b,c):
def fA(a,b,c):
return (a,b,c)
yield [f(a,b,c) for a in A]
yield [fB(b,c) for b in B]
[fC(c) for c in C]
#SAME AS#
Cs = []
for c in C:
Bs = []
for b in B:
As = []
for a in A:
As += [a]
Bs += [As]
Cs += [Bs]
return Cs
Repeated application of function to list
({'z':z} for x in ({'y':y} for y in ({'x':x} for x in 'abc')))
#SAME AS#
for x in 'abc':
x2 = {'x':x}
y2 = {'y':x2}
z2 = {'z':y2}
yield z2
#SAME AS#
def f(x):
return {'z':{'y':{'x':x}}}
return [f(x) for x in 'abc'] # or map(f,'abc')