list convert into string code example
Example 1: python array to string
mystring = 'hello, world'
myarray = string1.split(', ') #output => [hello, world]
myjoin1 = ', '.join(myarray) #output => hello, world
myjoin2 = ' '.join(myarray) #output => hello world
myjoin3 = ','.join(myarray) #output => hello,world
Example 2: convert list to string python
>>> mylist = ['spam', 'ham', 'eggs']
>>> print ', '.join(mylist)
spam, ham, eggs