Python печатать каждый символ в списке как строка
def list_to_string(s):
new = ""
for x in s:
new += x
return new
TheAssassin
def list_to_string(s):
new = ""
for x in s:
new += x
return new