可以使用replace()函數來替換多個字符。replace()函數接受兩個參數,第一個參數是要被替換的字符(或字符組合),第二個參數是替換后的字符(或字符組合)。
下面是一個例子,演示如何用replace()函數替換單個字符:
string = "Hello World"
new_string = string.replace("o", "e")
print(new_string)
輸出結果為:
Helle Werld
如果要替換多個字符,可以多次調用replace()函數。例如,想要將字符串中的字母o、r和l替換為字母e,可以這樣寫:
string = "Hello World"
new_string = string.replace("o", "e").replace("r", "e").replace("l", "e")
print(new_string)
輸出結果為:
Heee Weed
注意:replace()函數返回一個新的字符串,原始字符串并沒有改變。如果需要修改原始字符串,可以將替換后的結果賦值給原始字符串變量。