Answers for "python read first line of text file"

5

how to read the first line in a file python

f = open("test.txt", 'r')
variable = f.readline(1)
print(variable)
Posted by: Guest on May-30-2020
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
1

get first line of file python

with open('myfile.txt') as f:
    first_line = f.readline()
Posted by: Guest on November-19-2020
1

read only the first line python

""" Read only the first line of a file """

with open('file.txt') as f:
    first_line = f.readline()
    print(first_line)
    
""" or """

f = open ('file.txt', 'r')
first_line = f.readline()
print (first_line)
Posted by: Guest on December-15-2020

Code answers related to "python read first line of text file"

Python Answers by Framework

Browse Popular Code Answers by Language