View Single Post
Old Dec 12th, 2004, 9:49 PM   #6
thechristelegacy
Expert Programmer
 
thechristelegacy's Avatar
 
Join Date: Jul 2004
Location: Somerset, Pa
Posts: 708
Rep Power: 5 thechristelegacy is on a distinguished road
Send a message via AIM to thechristelegacy Send a message via MSN to thechristelegacy
I'm not quite sure what you're asking, but if you're trying to copy from dictionary to another variable all it is is this.
>>>a = {'a':1,'b':2,'c':3}
>>>b = a 
>>>print b
{'a':1,'b':2,'c':3}

As you can see, b is an exact copy of a. If that doesn't answere your question, keep asking.
thechristelegacy is offline   Reply With Quote