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 ...
Some results have been hidden because they may be inaccessible to you
Show inaccessible results