convert list to strings code example
Example 1: list to string python
list1 = ['1', '2', '3']
str1 = ''.join(list1)
Example 2: python list to string
mystring = 'hello, world'
mylist = string1.split(', ') #output => ['hello', 'world']
myjoin1 = ', '.join(mylist) #output => 'hello, world'
myjoin2 = ' '.join(mylist) #output => 'hello world'
myjoin3 = ','.join(mylist) #output => 'hello,world'