溫馨提示×

python中的replace怎么使用

小億
95
2024-02-27 12:52:47
欄目: 編程語言

在Python中,可以使用replace()方法來替換字符串中的指定子字符串。replace()方法的語法如下:

str.replace(old, new, count)

其中,old是要被替換的子字符串,new是用來替換的新字符串,count是可選參數,用于指定替換的次數。如果不指定count參數,則所有匹配的子字符串都會被替換。

示例代碼如下:

str = "Hello, World!"
new_str = str.replace("Hello", "Hi")
print(new_str) # 輸出: Hi, World!

如果想要替換所有匹配的子字符串,可以不指定count參數:

str = "apple, apple, orange, apple"
new_str = str.replace("apple", "banana")
print(new_str) # 輸出: banana, banana, orange, banana

0