Answers for "how to update key in dictionary in python"

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
0

how to modify the dict in python

d = {1: "one", 2: "three"}
d1 = {2: "two"}

# updates the value of key 2
d.update(d1)
print(d)

d1 = {3: "three"}

# adds element with key 3
d.update(d1)
print(d)
Posted by: Guest on June-18-2020

Code answers related to "how to update key in dictionary in python"

Python Answers by Framework

Browse Popular Code Answers by Language