make a replacement using dictionary in python, replace the key if column value is in dict code example
Example: 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