Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

how to read the first line in a file python

f = open("test.txt", 'r')
variable = f.readline(1)
print(variable)
 
PREVIOUS NEXT
Tagged: #read #line #file #python
ADD COMMENT
Topic
Name
3+1 =