Answers for "write a python program to read n number of lines from a file"

2

write number of lines in file python

fname = "test.txt"
count = 0
with open(fname, 'r') as f:
    for line in f:
        count += 1
print("Total number of lines is:", count)
Posted by: Guest on January-29-2021
1

Write a Python program to read first n lines of a file

def read_lines(fname,n,mode='r+'):
	with open(fname) as f:
		for i in range(n):
			print(f.readline())

read_lines('file1.txt',2)
#######################
def readnline(fname,lines,mode='r+'):
	with open(fname) as f:
		li = [ next(f) for i in range(lines)]
	print(li)

readnline('file1.txt',1)

#############################
Posted by: Guest on November-27-2020

Code answers related to "write a python program to read n number of lines from a file"

Python Answers by Framework

Browse Popular Code Answers by Language