make list of string to string code example
Example 1: convert list to string python
# Python program to convert a list
# to string using list comprehension
s = ['I', 'want', 4, 'apples', 'and', 18, 'bananas']
# using list comprehension
listToStr = ' '.join([str(elem) for elem in s])
print(listToStr)
Example 2: convert list of strings to string
string Something = string.Join(",", MyList);