make a list string python code example
Example 1: list to string python
List = ["ITEM1", "ITEM2", "ITEM3"]
string_version = "".join(List)
print(string_version)
Example 2: how to convert a list to a string in python
array = []
STR = ''
for i in array:
STR = STR+i