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