Answers for "python compressed for concatenate string"

0

python compressed for concatenate string

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

# OUTPUT
'a b c'
Posted by: Guest on April-20-2020

Code answers related to "python compressed for concatenate string"

Python Answers by Framework

Browse Popular Code Answers by Language