3
I have a series of files in . txt and I would like to add them / join them all in one using a python script.
something like:
#Abre o arquivo que receberá a soma de todos os outros
arq.open("redação.txt", "w")
#escreve todas as linhas de cada arquivo por vez (Aqui está meu problema!)
arq.write(arq=(texto1.txt + texto2.txt + texto3.txt + texto4.txt + texto5.txt))
#Fecha o arquivo
arq.close
I’ve researched the sum of files and texts in python, but I haven’t found anything specifically this way
Easier to make from the command line. Linux:
cat aqr1 arq2 arq3 > destino
.Windows:type aqr1 arq2 arq3 > destino
.– Augusto Vasques