python 3 print array as string code example
Example 1: list to string python
list1 = [1, 2, 3]
str1 = ''.join(str(e) for e in 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(str(e) for e in list1)
array = []
STR = ''
for i in array:
STR = STR+i