Answers for "replace value with key dictionary"

3

python replace by dictionary

address = "123 north anywhere street"

for word, initial in {"NORTH":"N", "SOUTH":"S" }.items():
    address = address.replace(word.lower(), initial)
print address
Posted by: Guest on July-21-2020
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 "replace value with key dictionary"

Python Answers by Framework

Browse Popular Code Answers by Language