In Python, strings are immutable.
What is the standard idiom to walk through a string character-by-character and modify it?
The only methods I can think of a
string.translate is probably the closest function to what you're after.
string.translate