[Tutor] Append To File

Brad Chandler mbc2@netdoor.com
Mon, 26 Feb 2001 08:35:42 -0600


>file = open('testdb.txt', 'w')

Have you tried using open('testdb.txt', 'a')?  I believe that will append
the new text to the end of the file.

Brad