“Excluindo em um arquivo de texto em Python” Respostas de código

Python Excluir texto no arquivo de texto

# Delete all text in a text file
f = open("text_file.txt", "r+")
f.truncate(0)
f.close()
Hello There

Excluindo em um arquivo de texto em Python

#get list of lines.
a_file = open("sample.txt", "r") 
lines = a_file. readlines()
a_file. close()
#remove line from list
del lines[1] delete lines.
#write new contents into file
new_file = open("sample.txt", "w+") write to file without line.
for line in lines:
new_file. write(line)
new_file. close()

Respostas semelhantes a “Excluindo em um arquivo de texto em Python”

Perguntas semelhantes a “Excluindo em um arquivo de texto em Python”

Mais respostas relacionadas para “Excluindo em um arquivo de texto em Python” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código