在Python中,你可以使用replace()
方法來替換字符串中的某個字符串。
replace()
方法的語法如下:
string.replace(old, new, count)
其中,old
是要替換的舊字符串,new
是要替換的新字符串,count
是可選參數,表示要替換的次數(默認是全部替換)。
下面是一個例子:
string = "Hello, World!"
new_string = string.replace("World", "Python")
print(new_string)
輸出結果:
Hello, Python!
在這個例子中,我們將字符串"World"
替換為"Python"
,并將結果存儲在new_string
變量中。然后,我們打印出新的字符串new_string
。
請注意,replace()
方法返回一個新的字符串,原始字符串不會被修改。如果你需要在原字符串上進行替換,可以將結果賦值給原字符串變量:
string = string.replace("World", "Python")
print(string) # 輸出結果為 "Hello, Python!"