The string.replace() is deprecated on python 3.x. What is the new way of doing this?
As in 2.x, use str.replace().
Example:
>>> 'Hello world'.replace('world', 'Guido') 'Hello Guido'