I have a list
l1 = ['a','b','c','d','e']
When I run print l1 it returns:
['a','b','c','d','e']
When I try
for a in l1
print ' '.join(map(str,a))
I get
a
b
c
d
e
What I want to get though is
a b c d e