Super Newbie Question

Greg Ewing greg at cosc.canterbury.ac.nz
Tue Apr 5 23:22:49 EDT 2005


Joey C. wrote:
> the issue with the
> temporary file is that when I write something new to it, if the old
> contents of the file was larger, not all of it will be overwritten.

Not if you open it with

   f = open(filename, "w")

which will delete any previous contents the file
may have had.

-- 
Greg Ewing, Computer Science Dept,
University of Canterbury,	
Christchurch, New Zealand
http://www.cosc.canterbury.ac.nz/~greg



More information about the Python-list mailing list