python convert elements of list to strings 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 into string with \n
int_lst = [1, 2, 3, 4, 5]
full_str = '\n'.join([str(elem) for elem in list_of_num])
print(full_str)