Home  >  Article  >  Backend Development  >  How to Rename Dictionary Keys in Python Without Reassigning Values or Iteration?

How to Rename Dictionary Keys in Python Without Reassigning Values or Iteration?

Susan Sarandon
Susan SarandonOriginal
2024-11-04 07:02:31976browse

How to Rename Dictionary Keys in Python Without Reassigning Values or Iteration?

Renaming Dictionary Keys in Python

The question is, can a dictionary key be renamed without reassigning its value or iterating through the dictionary itself?

Regular Dictionary:

For a regular dictionary, the renaming can be done with the following code:

<code class="python">mydict[k_new] = mydict.pop(k_old)</code>

In this code, the item is moved to the end of the dictionary unless k_new already exists, in which case its value is overwritten.

Ordered Dictionary (Python 3.7 ):

For an OrderedDict, the ordering needs to be maintained. The easiest way to rename a key is to create a new dictionary with the desired key name:

<code class="python">{k_new if k == k_old else k:v for k, v in od.items()}</code>

Ordered Dictionary (General):

In general, modifying the key itself is not practical because keys are immutable and cannot be modified. Therefore, the solution is to create a new dictionary with the desired key name using a generator expression:

<code class="python">OrderedDict((k_new if k == k_old else k, v) for k, v in od.items())</code>

The above is the detailed content of How to Rename Dictionary Keys in Python Without Reassigning Values or Iteration?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn