Answers for "read first n lines of file python "readlines""

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
0

how to read first lines of a file

with open("datafile") as myfile:
    head = [next(myfile) for x in range(N)]
print(head)
Posted by: Guest on August-10-2021

Code answers related to "read first n lines of file python "readlines""

Python Answers by Framework

Browse Popular Code Answers by Language