On Jan 9, 2008 5:29 AM, Beema shafreen <[EMAIL PROTECTED]> wrote: > Hi I am beginner in python. and I am not able to understand the Pickle > concept in python can. some body explain me about the use of this module, > few examples. which will help me a lot. > > regards > shafreen > > -- > http://mail.python.org/mailman/listinfo/python-list >
You can find a good documentation of the pickle module here: http://docs.python.org/dev/library/pickle.html with exmaples to show you how you can use it. Pickle is used to serialize objects. What does that mean? In short you save your objects( remeber everything is an object in python, strings, lists, touples, dictionaries ...) to an external file (eg. object.pcl) for later usage( eg. you save your users personal data when exiting your software, and then you load it later when your software is restarted by the user. -- Please visit this site and play my RPG! http://www.1km1kt.net/rpg/Marinci.php
-- http://mail.python.org/mailman/listinfo/python-list