Re: [Tutor] editTextFile.py

2007-09-13 Thread Kent Johnson
Christopher Spears wrote: > I created a script that opens an existing text file, > allows the user to write over the original contents, > and then save the file. The original contents are > then saved in a separate file. Here is the script: > > #!/usr/bin/python > > 'editTextFile.py -- write ov

Re: [Tutor] editTextFile.py

2007-09-12 Thread Luke Paireepinart
Christopher Spears wrote: > I created a script that opens an existing text file, > allows the user to write over the original contents, > and then save the file. The original contents are > then saved in a separate file. Here is the script: > > #!/usr/bin/python > > 'editTextFile.py -- write over

[Tutor] editTextFile.py

2007-09-12 Thread Christopher Spears
I created a script that opens an existing text file, allows the user to write over the original contents, and then save the file. The original contents are then saved in a separate file. Here is the script: #!/usr/bin/python 'editTextFile.py -- write over contents of existing text file' import