I got a sample code and tested it but really can not understand the
use of pickle and dump:
[color=blue][color=green][color=darkred]
>>> import pickle
>>> f = open("try.txt", "w")
>>> pickle.dump(3.1 4, f)
>>> pickle.dump([1,2,3,4], f)
>>> f.close()[/color][/color][/color]
use of pickle and dump:
[color=blue][color=green][color=darkred]
>>> import pickle
>>> f = open("try.txt", "w")
>>> pickle.dump(3.1 4, f)
>>> pickle.dump([1,2,3,4], f)
>>> f.close()[/color][/color][/color]
Comment