I have a list and I wanted to write to another file
["AMANDA,"JULIANA","VANESSA","PATRICIA"]
In a document using Python, I did however the file get all together type like this:
AMANDAJULIANAVANESSAPATRICIA
How could I fix this?
def ordem_txt(palavras):
arq = open(palavras, 'r')
texto = arq.read()
palavras = texto.replace("\n", " ").split(" ")
palavras.sort(reverse=False)
#print(palavras)
return palavras
def write_txt(palavras, caminho):
arq = open(caminho, "w")
arq.writelines(palavras)
arq.close()