Python中可以使用str.replace()
方法來實(shí)現(xiàn)一鍵替換。該方法用于將字符串中的指定子字符串替換為另一個(gè)子字符串。其語法如下:
new_string = old_string.replace(old_substring, new_substring)
其中,old_string
是原始字符串,old_substring
是需要替換的子字符串,new_substring
是替換后的子字符串。調(diào)用replace()
方法后,會(huì)返回一個(gè)新的字符串new_string
,其中所有的old_substring
都被替換為new_substring
。
以下是一個(gè)示例:
sentence = "I love apples. Apples are delicious."
new_sentence = sentence.replace("apples", "oranges")
print(new_sentence)
輸出結(jié)果為:
I love oranges. Oranges are delicious.
在上述示例中,原始字符串sentence
中的所有"apples"都被替換為"oranges",并存儲(chǔ)在新的字符串new_sentence
中。