turn lisdt of array lelements into a string code example
Example 1: list to string python
List = ["ITEM1", "ITEM2", "ITEM3"]
string_version = "".join(List)
print(string_version)
Example 2: list to string python
>>> L = [1,2,3]
>>> " ".join(str(x) for x in L)
'1 2 3'