I have list of lists:
[['lorem', ['a', 'b', 'c', 'd']], ['ipsum', ['e']], ['dolor', ['f','g']], ['sit', ['h', 'i']]]
how to achieve this one?
lorem (a + b + c + d); ipsum (e); dolor (e + g); sit (h + i)
So far, I've tried:
print '\n'.join('%s %s' % x for x in list)
with no luck.