how to convert a list in a string python code example
Example 1: list to string python
list1 = [1, 2, 3]
str1 = ''.join(str(e) for e in list1)
Example 2: list to string python
>>> L = [1,2,3]
>>> " ".join(str(x) for x in L)
'1 2 3'
Example 3: how to convert a list to a string in python
array = []
STR = ''
for i in array:
STR = STR+i