how to convert list of string 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'
list1 = [1, 2, 3]
str1 = ''.join(str(e) for e in list1)
>>> L = [1,2,3]
>>> " ".join(str(x) for x in L)
'1 2 3'