Regarding your comment (which seems now deleted): If you want the elements in the sublist be seperated by comma, just replace ''.join(l) by ','.join(l)
1
Here you go for a harder way :
x = [['a','b'],['c','d'],['e','f']]
string = ''
for i in x:
for e in i:
string+=e
string+="\n"
print string
"\n".join("".join(s) for s in [['a','b'],['c','d'],['e','f']])