Help in Placing Object in Memory

Bruno Desthuilliers bruno.42.desthuilliers at wtf.websiteburo.oops.com
Tue Mar 27 12:54:49 EDT 2007


Clement a écrit :
> I am newbie to Python...... 

To Python only, or to both Python and programming in general ?

> i want to know something..........
> 
> can i place an object in disk instead of placing in Main Memory...?

You can store it on disk (cf pickles and friends), but to actually use 
it you'll have to load it in memory anyway.

> can two python script share a common object....?

While there are technical answers on this, I guess you'd better learn 
how to use functions and pass objects between them.

My 2 cents.



More information about the Python-list mailing list