“Cambiar parte de un archivo de texto Python” Código de respuesta

Python Buscar y reemplazar la cadena en el archivo

# Read in the file
with open('file.txt', 'r') as file :
  filedata = file.read()

# Replace the target string
filedata = filedata.replace('ram', 'abcd')

# Write the file out again
with open('file.txt', 'w') as file:
  file.write(filedata)
Frantic Fish

Python reemplazar la cadena en el archivo

#input file
fin = open("data.txt", "rt")
#output file to write the result to
fout = open("out.txt", "wt")
#for each line in the input file
for line in fin:
	#read replace the string and write to output file
	fout.write(line.replace('pyton', 'python'))
#close input and output files
fin.close()
fout.close()
Embarrassed Emu

Cambiar parte de un archivo de texto Python

#!/usr/bin/env python3
import fileinput

with fileinput.FileInput(filename, inplace=True, backup='.bak') as file:
    for line in file:
        print(line.replace(text_to_search, replacement_text), end='')
britishmailman

Respuestas similares a “Cambiar parte de un archivo de texto Python”

Preguntas similares a “Cambiar parte de un archivo de texto Python”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código