Join Array Elements into String using Python September 22, 2020 Python 0 Comments 497 Views join method data = ['First', 'Second', 'Third'] text = ','.join(data) print(text)
Leave a Comment
Cancel reply