Answers for "pirnt string list to strig"

1

how to convert a list into string with n

int_lst = [1, 2, 3, 4, 5]
full_str = 'n'.join([str(elem) for elem in list_of_num])
print(full_str)
Posted by: Guest on November-23-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

Python Answers by Framework

Browse Popular Code Answers by Language