Join Array Elements into String using Python

join method

data = ['First', 'Second', 'Third']

text = ','.join(data)
print(text)

Leave a Comment

Cancel reply

Your email address will not be published.