“Escriba un programa de Python para leer las últimas líneas de un archivo” Código de respuesta

Escriba un programa de Python para leer las últimas líneas de un archivo

def read_lastnlines(fname,n):
	with open('file1.txt') as f:
		for line in (f.readlines() [-n:]):
			print(line)

read_lastnlines('file1.txt',3)
Man

Escriba un programa de Python para leer las últimas líneas de un archivo

Write a Python program to 

Read the first two lines from a text file named "file1.txt"
Write the two lines read from "file1.txt" to a new file called "file2.txt"
Read "file2.txt" and Print the contents
Answer:(penalty regime: 10, 20, ... %)
eranga sandamali

Escriba un programa de Python para leer las últimas líneas de un archivo

fhandle1 = open("file1.txt","r")
fhandle2 = open("file2.txt","w")

str = fhandle1.readline()
fhandle2.write(str)
str = fhandle1.readline()
fhandle2.write(str)

fhandle1.close()
fhandle2.close()

fhandle3 = open("file2.txt")
print(fhandle3.read())
fhandle3.close()
ABDUL MAALIK HUMAM

Escriba un programa de Python para leer las últimas líneas de un archivo

Write a Python program to 

Read the first two lines from a text file named "file1.txt"
Write the two lines read from "file1.txt" to a new file called "file2.txt"
Read "file2.txt" and Print the contents
Answer:(penalty regime: 10, 20, ... %)
Nimesh Piyumantha

Escriba un programa de Python para leer las últimas líneas de un archivo

Write a Python program to 

Read the first two lines from a text file named "file1.txt"
Write the two lines read from "file1.txt" to a new file called "file2.txt"
Read "file2.txt" and Print the contents
Ganidu Kamburugamuwa

Respuestas similares a “Escriba un programa de Python para leer las últimas líneas de un archivo”

Preguntas similares a “Escriba un programa de Python para leer las últimas líneas de un archivo”

Más respuestas relacionadas con “Escriba un programa de Python para leer las últimas líneas de un archivo” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código