Answers for "how to convert strings from the list"

10

how do i convert a list to a string in python

lines2 = " ".join(lines) 	# Converts the list to a string.
							# This should work for writing to a file
file.write(lines2)
Posted by: Guest on April-07-2020
0

convert list of strings to string

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

Code answers related to "how to convert strings from the list"

Python Answers by Framework

Browse Popular Code Answers by Language