Python dikompresi untuk string gabungan

LIST = [ 'a', 'b', 'c' ]
text = ' '.join(x for x in LIST)
print(text)

# OUTPUT
'a b c'
Cirex