Is there a straightforward way to do this?
I want to change the key in a python dictionary.
|
Is there a straightforward way to do this? I want to change the key in a python dictionary. |
|||||||||
|
|
Easily done in 2 steps:
Or in 1 step:
which will raise
|
|||||||||||||||
|
|
if you want to change all the keys:
if you want to change single key: You can go with any of the above suggestion. |
|||
|
|
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. |
||||
|
|
|
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:
there's no reason you can't add |
|||
|
|
|
No direct way to do this, but you can delete-then-assign
or do mass key changes:
|
|||
|
|