在Python中,可以使用字符串的 replace()
方法來替換指定的字符串。該方法接受兩個參數,第一個參數是要被替換的字符串,第二個參數是替換后的字符串。下面是一個示例:
string = "Hello, World!"
new_string = string.replace("World", "Python")
print(new_string)
輸出結果為:
Hello, Python!
在這個例子中,我們將字符串 Hello, World!
中的 “World” 替換為 “Python”,然后將結果打印出來。