Deep Python Deep Copy of Dictionary

import copy
d = { ... }
d2 = copy.deepcopy(d)
Krzysztof Baran