python print last n lines of file code example
Example: Write a Python program to read last n lines of a file
def read_lastnlines(fname,n):
with open('file1.txt') as f:
for line in (f.readlines() [-n:]):
print(line)
read_lastnlines('file1.txt',3)