On Wed, 07 Jul 2010 23:55:46 -0700, lavanya wrote:
> Hello all,
>
> How do you append to a file using Python os::file APIs. So that it
> appends to the content of the file. Not adding the content to the new
> line. But just appends next to the exiting content of the file.
>
> Example : current c
Hello all,
How do you append to a file using Python os::file APIs. So that it
appends to the content of the file. Not adding the content to the new
line. But just appends next to the exiting content of the file.
Example : current content of file
A B C
if we append D to it, it should be
A B C D
N