Answers for "hhow to convert a string into a list of strings"

C
5

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
0

convert list of strings to string

string Something = string.Join(",", MyList);
Posted by: Guest on August-25-2020

Code answers related to "hhow to convert a string into a list of strings"

Code answers related to "C"

Browse Popular Code Answers by Language