Re: two file into a single file
>I have a two file, > file 1: > 17097 > 17186 > 1723 > 17895 > 17906 > 18295 > 18311 > 1880 > 19160 > 19629 > > file 2: > 17097 > 17186 > 1723 > 17895 > 17906 > 18295 > 18311 > 1880 > 19160 > 19629 > h
Re: two file into a single file
You will need to use the open() builtin for each input file, and again for the output file. Documentation is available in the python tutorial here: http://docs.python.org/tut/node9.html#SECTION00920 You should read also the whole tutorial, and work with it until you understand