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