Answers for "keep first lines of a text file python"

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

get first line of file python

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

Code answers related to "keep first lines of a text file python"

Python Answers by Framework

Browse Popular Code Answers by Language