how to make a list a string in python 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'
Example 3: how to make a list string in python
n = ["Hello"," I'm " , "12" , " Years Old "] # Our list
String = "" # Our string
for x in n :
String += x
print(String) #Prints it