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.