1fn = open("path of input file.txt","r")
2fnew = fn.read()
3fs = fnew.split('\n')
4for value in fs:
5 f = [open("path of output file to write.txt" %i,'w') for i in range(len(list_of_files))]
6 f.write(value)
7 f.close()
1fn = open("path of input file.txt","r")
2for i, line in enumerate(fn):
3 f = open("/home/vidula/Desktop/project/ori_tri/input_%i.data" %i,'w')
4 f.write(line)
5 f.close()
1"['128,129', '116,118', '108,104', '137,141', '157,144', '134,148', '138,114', '131,138', '248,207', '208,247', '246,248', '101,106', '131,115', '119,120', '131,126', '138,137', '132,129']"
2"['154,135', '151,147', '236,244', '243,238', '127,127', '125,126', '122,124', '123,126', '127,129', '122,121', '147,134', '126,132', '128,137', '233,222', '222,236', '125,126']"