Answers for "convert list string to string array"

6

convert list to string

# 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)
Posted by: Guest on October-04-2020

Code answers related to "convert list string to string array"

Python Answers by Framework

Browse Popular Code Answers by Language