python一鍵替換的方法是什么

小億
131
2023-08-31 05:16:40
欄目: 編程語言

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中。

0