A = { 'type': 'one', 'dist': 'fedora' } B = A.copy() C = B.copy() # user customizes B['type'] = 'two' print A['type'], A['dist'] print B['type'], B['dist'] print C['type'], C['dist']