Answers for "change value in dictionary python"

5

python change a key in a dictionary

# Basic syntax:
# Approach 1:
dictionary[new_key] = dictionary[old_key]
del dictionary[old_key]

# Approach 2:
dictionary[new_key] = dictionary.pop(old_key)
Posted by: Guest on April-26-2021
2

how to update key by value in dictionary python

a_dict = {"a": 1, "B": 2, "C": 3}

new_key = "A"
old_key = "a"
a_dict[new_key] = a_dict.pop(old_key)

print(a_dict)

# OUTPUT
{'B': 2, 'C': 3, 'A': 1}
Posted by: Guest on September-27-2021

Code answers related to "change value in dictionary python"

Python Answers by Framework

Browse Popular Code Answers by Language