open and read only the first row code example
Example: how to read the first line in a file python
f = open("test.txt", 'r')
variable = f.readline(1)
print(variable)
f = open("test.txt", 'r')
variable = f.readline(1)
print(variable)