Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a straightforward way to do this?

I want to change the key in a python dictionary.

share|improve this question
That doesn't make any sense at all. Can you explain what you mean by "change a key value"? Can you give a before and after picture of what you mean by "change a key value"? – S.Lott Dec 10 '10 at 14:28
2  
@S.Lott: The title might be ambiguous but in the text of the question they wrote "I want to change the key" which is not IMHO. – martineau Dec 10 '10 at 17:26
@martineau: It's less ambiguous because there are fewer words, agreed. However, the use cases puzzles me a great deal. I'm hoping for a concrete example to explain what state change or mutation is supposed to happen to a dictionary. – S.Lott Dec 10 '10 at 17:34

6 Answers

up vote 60 down vote accepted

Easily done in 2 steps:

dict[new_key] = dict[old_key]
del dict[old_key]

Or in 1 step:

dict[new_key] = dict.pop(old_key)

which will raise KeyError if dict[old_key] is undefined. Note that this will delete dict[old_key].

>>> dict = { 1: 'one', 2:'two', 3:'three' }
>>> dict['ONE'] = dict.pop(1)
>>> dict
{2: 'two', 3: 'three', 'ONE': 'one'}
>>> dict['ONE'] = dict.pop(1)
Traceback (most recent call last):
  File "<input>", line 1, in <module>
KeyError: 1
share|improve this answer
1  
Beat me by 7 seconds! :-) – Laurence Gonsalves Dec 10 '10 at 7:12
Hehe, okay, it seems I have to do in two steps. – user469652 Dec 10 '10 at 7:12
I have to remove the old key, it can't be show in dictionary any more. – user469652 Dec 10 '10 at 7:13
@user469652 Both methods will delete the old key – marcog Dec 10 '10 at 7:15
6  
Good answer! That said, since 'dict' is a constructor for a dictionary, it would be best for implementers of this example to avoid using 'dict' as a variable name. – GreenMatt Apr 5 '12 at 17:10
show 3 more comments

if you want to change all the keys:

d = {'x':1, 'y':2, 'z':3}
d1 = {'x':'a', 'y':'b', 'z':'c'}

In [10]: dict((d1[key], value) for (key, value) in d.items())
Out[10]: {'a': 1, 'b': 2, 'c': 3}

if you want to change single key: You can go with any of the above suggestion.

share|improve this answer
This creates a new dictionary rather than updating an existing one -- which may not be important, but isn't what was asked. – martineau Dec 10 '10 at 17:33

pop'n'fresh

>>>a = {1:2, 3:4}
>>>a[5] = a.pop(1)
>>>a
{3: 4, 5: 2}
>>> 
share|improve this answer

Since keys are what dictionaries use to lookup values, you can't really change them. The closest thing you can do is to save the value associated with the old key, delete it, then add a new entry with the replacement key and the saved value. Several of the other answers illustrate different ways this can be accomplished.

share|improve this answer

You can associate the same value with many keys, or just remove a key and re-add a new key with the same value.

For example, if you have keys->values:

red->1
blue->2
green->4

there's no reason you can't add purple->2 or remove red->1 and add orange->1

share|improve this answer

No direct way to do this, but you can delete-then-assign

d = {1:2,3:4}

d[newKey] = d[1]
del d[1]

or do mass key changes:

d = dict((changeKey(k), v) for k, v in d.items())
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.