I am trying to write two things from two different files on the same line of a different file(That is there are 3 files being used. 2 that already have items and a new one )
fin=open("/Users/battledrum/Desktop/review2.txt")
fin1=open("/Users/battledrum/Desktop/review3.txt")
fout=open("/Users/battledrum/Desktop/HeightVStime.txt","w")
a=list()
for i in range(35):
fout.write(fin.read()+'\t'+fin1.read())
print(len(a))
this is the result i want to see in the new file:
1.34, 1.54
1.80, 1.39
1.25 , 1.68
1.69 , 1.83