I\'ve been trying to read lists of numbers from one file, split them up, and put them into another file. After messing with a few debug prints, I\'ve come to the conclusion that
You need to close your file handler so it actually writes and cleans everything up.
outHandle.close()
add that to the end.
close implies flush: does close() imply flush() in Python?
close
flush