Answers for "python replace string with 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

Code answers related to "python replace string with dictionary"

Python Answers by Framework

Browse Popular Code Answers by Language