Python Deep Copy d'un dictionnaire
import copy
d = { ... }
d2 = copy.deepcopy(d)
Krzysztof Baran
import copy
d = { ... }
d2 = copy.deepcopy(d)