how to write into multiple files using python code example
Example 1: write in multiple files python
fn = open("path of input file.txt","r")
fnew = fn.read()
fs = fnew.split('\n')
for value in fs:
f = [open("path of output file to write.txt" %i,'w') for i in range(len(list_of_files))]
f.write(value)
f.close()
Example 2: write in multiple files python
128,129
116,118
108,104
Example 3: write in multiple files python
154,135
151,147
236.244