I have a Python program that works with dictionaries a lot. I have to make copies of dictionaries thousands of times. I need a copy of both the keys and the associated contents. The copy will be edited and must not be linked to the original (e.g. changes in the copy must not affect the original.)
Keys are Strings, Values are Integers (0/1).
I currently use a simple way:
newDict = oldDict.copy()
Profiling my Code shows that the copy operation takes most of the time.
Are there faster alternatives to the dict.copy() method? What would be fastest?
I hope that there are answers available: I have searched but found none.
Thank you for the support!
Best
boolbe a better choice than anint? – Samir Talwar May 2 '11 at 19:31boolin Python namedintanyway. – Santa May 2 '11 at 19:42booltype is actually a subclass (subtype?) of theinttype. – Santa May 2 '11 at 20:04