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
You can use StringIO class to receive file-like mutable interface of string.