este problema se puede abordar de diversas maneras, sin embargo te dejamos la que para nosotros es la solución más completa.
Ejemplo 1: cómo editar una línea específica en un archivo de texto en python
# with is like your try .. finally block in this casewithopen('stats.txt','r')asfile:# read a list of lines into data
data =file.readlines()print data
print"Your name: "+ data[0]# now change the 2nd line, note that you have to add a newline
data[1]='Magen'# and write everything backwithopen('stats.txt','w')asfile:file.writelines( data )
Ejemplo 2: edición de una línea específica en un archivo de texto en python
# with is like your try .. finally block in this casewithopen('stats.txt','r')asfile:# read a list of lines into data
data =file.readlines()print data
print"Your name: "+ data[0]# now change the 2nd line, note that you have to add a newline
data[1]='Magen'# and write everything backwithopen('stats.txt','w')asfile:file.writelines( data )
Reseñas y valoraciones
Finalizando este artículo puedes encontrar las anotaciones de otros creadores, tú aún puedes insertar el tuyo si te gusta.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)