Simple account program

Chris Rebert (cybercobra) cvrebert at gmail.com
Tue Mar 22 01:38:33 EST 2005


You probably want:

 import pickle
 pickle.dump(myAccount, file("account.pickle", "w"))

To reload your account:
 import pickle
 myAccount = pickle.load(file("account.pickle"))




More information about the Python-list mailing list