Answers for "python open first lines of 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
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 "python open first lines of file"

Python Answers by Framework

Browse Popular Code Answers by Language