Pular para o conteúdo
Menu
Esta pergunta foi sinalizada
1 Responder
4540 Visualizações

Hello my friend;

Please, i want to ask you about text files management.

In fact, i am creating a text file and add some lines when i click on a button.

But, i want to empty the file before than add lines because the function thats adding lines is functional each time that i press the button.

Please, who can help me know how to empty my text file in Python.

Thanks a lot in advance.

Regards.

Avatar
Cancelar
Autor Melhor resposta

Finally, i got the answer.

Here is it:

filename="/opt/file.txt"

lines = open(filename).readlines()  

open(filename, 'w').writelines(lines[-1:-1])

Regards.

Avatar
Cancelar
Publicações relacionadas Respostas Visualizações Atividade
4
out. 16
30885
1
set. 15
3635
1
jun. 15
600
0
abr. 15
462
2
abr. 15
614