import csv import time import sys tinitial = time.time() f = open('out_23_sec4_3.txt', 'w') print ("",end="",file=f) f.close() tinitial = time.time() infile= open('in4_3.txt',"r") # Read in the data csv_reader = csv.reader(infile) po=[] f = open('out_23_4_3.txt', 'w') for row in csv_reader: #reads Row from file which is just one line po.append(int(row[0])) print(po[0],file=f) col=1 while(col