Source Code:
(back to article)
string = "Hello World" print(string.replace("World", "Python")) # Output: Hello Python
Result:
Report an issue