Answers for "how to change values on a 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

Code answers related to "how to change values on a dictionary in python"

Python Answers by Framework

Browse Popular Code Answers by Language