Ok, if it's so urgent. import cPickle
mydict = {1:"one", 2:"two"}
#Saving
fileo = open("mysavedfile", "w")
cPickle.dump(mydict, fileo)
fileo.close()
fileo2 = open("mysavedfile", "r")
saved_dict = cPickle.load(fileo2)
print saved_dict
Hope this one is simple enough
Hugo
_______________________________________________
Tutor maillist - [email protected]
http://mail.python.org/mailman/listinfo/tutor
