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