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