Answers for "convert list element into string python"

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 to string python

>>> mylist = ['spam', 'ham', 'eggs']
>>> print ', '.join(mylist)
spam, ham, eggs
Posted by: Guest on January-10-2021

Code answers related to "convert list element into string python"

Python Answers by Framework

Browse Popular Code Answers by Language