I have a file with 196 list in it,and I want to create new 196 output files and write each of the list in a new file, so that I will have 196 output files each containing 1
your f is a list of files, you have to loop through it:
for file in f: file.write(value)