Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

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)
 
PREVIOUS NEXT
Tagged: #read #line #python
ADD COMMENT
Topic
Name
3+6 =