Answers for "substitute string for key value in dictionary"

1

replace key of 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 April-26-2021

Code answers related to "substitute string for key value in dictionary"

Python Answers by Framework

Browse Popular Code Answers by Language