Answers for "how come readline() function only read one line"

0

Read text file line by line using the readline() function

# Program to read all the lines in a file using readline() function
file = open("python.txt", "r")
while True:
	content=file.readline()
	if not content:
		break
	print(content)
file.close()
Posted by: Guest on September-25-2021
0

how to use readline in python

myFile = open("test.txt,"r")
print(myFile.readline(0))# print the first line of the text file
print(myFile.readline(1))# print the second line of the text file
print(myFile.readline(2))# print the tird line of the text file
# ect..
# you might need to use MyFile.seek(0) after reading
Posted by: Guest on August-02-2021

Code answers related to "how come readline() function only read one line"

Python Answers by Framework

Browse Popular Code Answers by Language