Why in python loop for line in file is not going through all lines after using readline before? How to achieve that after reading some line(s) for loop will go through all lines in file?
file = open("file.xyz", "r")
first_line = file.readline()
for line in file:
x,y,z = line.split()