Answers for "convert object to string python"

4

list to string python

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

print(string_version)
Posted by: Guest on June-16-2020
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

Code answers related to "convert object to string python"

Python Answers by Framework

Browse Popular Code Answers by Language