for line in sys.stdin.readlines(): fields = line.split("\t") for field in fields[:250]: file1.write(field + '\t') file1.write('\n') It's just taking the first 250 elements of a list and writing them ...
Results that may be inaccessible to you are currently showing.
Hide inaccessible results