how to change array to string in python code example

Example 1: convert list to string python

# Python program to convert a list 
# to string using list comprehension 
   
s = ['I', 'want', 4, 'apples', 'and', 18, 'bananas'] 
  
# using list comprehension 
listToStr = ' '.join([str(elem) for elem in s]) 
  
print(listToStr)

Example 2: list to string python

List = ["ITEM1", "ITEM2", "ITEM3"]
string_version = "".join(List)

print(string_version)

Example 3: list to string python

>>> L = [1,2,3]       
>>> " ".join(str(x) for x in L)
'1 2 3'

Example 4: convert list to string python

>>> mylist = ['spam', 'ham', 'eggs']
>>> print ', '.join(mylist)
spam, ham, eggs