convert list of string to string python code example
Example 1: list to string python
>>> L = [1,2,3]
>>> " ".join(str(x) for x in L)
'1 2 3'
Example 2: convert list of strings to string
string Something = string.Join(",", MyList);
Example 3: how to convert a list to a string in python
array = []
STR = ''
for i in array:
STR = STR+i