|
From: Yolande S. (EEI) <Yol...@ee...> - 2001-11-28 14:27:56
|
Hi,
I am currently trying to write to a file by doing the following
f=open('C:/filename', 'r+')
f.seek(0,2)
f.write(''hello')
My problem is that I need to move to the end of the file and then write on a new line.
How can I do this using seek?
Rgds,
Yolande
|