共计 283 个字符,预计需要花费 1 分钟才能阅读完成。
Python 中可以使用 replace()
方法来替换字符串中的某个字符。
用法如下:
string.replace(old, new, count)
其中,string
是要进行替换操作的字符串,old
是要被替换的字符,new
是替换后的字符,count
是可选的参数,表示替换次数,默认为替换所有匹配项。
示例:
string = "Hello, world!"
new_string = string.replace("o", "*")
print(new_string)
输出:
Hell*, w*rld!
在上面的例子中,我们将字符串中的所有 "o" 字符替换为 "*" 字符。
丸趣 TV 网 – 提供最优质的资源集合!
正文完