python read 1 line from file code example
Example 1: python read file line by line
with open("file.txt") as file_in:
lines = []
for line in file_in:
lines.append(line)
Example 2: how to read the first line in a file python
f = open("test.txt", 'r')
variable = f.readline(1)
print(variable)