read first line of txt file python code example
Example 1: how to read the first line in a file python
f = open("test.txt", 'r')
variable = f.readline(1)
print(variable)
Example 2: get first line of file python
with open('myfile.txt') as f:
first_line = f.readline()
Example 3: 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)