Nuestro equipo de especialistas luego de días de trabajo y de juntar de datos, dimos con la respuesta, esperamos que todo este artículo sea de gran utilidad para tu proyecto.
Ejemplo 1: cómo eliminar el último carácter de un archivo de texto en python
file.truncate(file.tell -1)#explanation - the function truncate will resize the file to the #full size - 1 and that means it will remove the last character#if you need to do that while you are reading/writing somewhere using#seek() you can use this function ->defget_size(fileobject):
fileobject.seek(0,2)# move the cursor to the end of the file
size = fileobject.tell()return size
#and then
fsize = get_size(file)file.truncate(fsize -1)
Ejemplo 2: eliminar la última línea del archivo de texto python
fd=open("file.txt","r")
d=fd.read()
fd.close()
m=d.split("n")
s="n".join(m[:-1])
fd=open("file.txt","w+")for i inrange(len(s)):
fd.write(s[i])
fd.close()
Comentarios y valoraciones
Si para ti ha resultado de utilidad este post, agradeceríamos que lo compartas con el resto seniors y nos ayudes a difundir esta información.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)