溫馨提示×

Python字符串替換某個字符的方法是什么

小億
127
2023-11-28 12:51:04
欄目: 編程語言

Python中可以使用replace()方法來替換字符串中的某個字符。

用法如下:

string.replace(old, new, count)

其中,string是要進行替換操作的字符串,old是要被替換的字符,new是替換后的字符,count是可選的參數(shù),表示替換次數(shù),默認為替換所有匹配項。

示例:

string = "Hello, world!"
new_string = string.replace("o", "*")
print(new_string)

輸出:

Hell*, w*rld!

在上面的例子中,我們將字符串中的所有"o"字符替換為"*"字符。

0