Back
The string.replace() is deprecated in python 3.x. What is the new way of doing this?
You can use str.replace().
Example:
>>> 'Hello world'.replace('world', 'Guido') 'Hello Guido'
>>> 'Hello world'.replace('world', 'Guido')
'Hello Guido'
To know more about this you can have a look at the following video tutorial:-
31k questions
32.8k answers
501 comments
693 users