共计 266 个字符,预计需要花费 1 分钟才能阅读完成。
在 Python 中,你可以使用字符串的 replace()
方法来替换字符串中的某个字符。replace()
方法需要传入两个参数,第一个参数是要被替换的字符,第二个参数是替换后的字符。
以下是一个示例:
string = "Hello, World!"
new_string = string.replace('o', 'x')
print(new_string)
输出:
Hellx, Wxrld!
在上面的示例中,我们将字符串中的所有字符 'o'
替换为 'x'
。注意,replace()
方法返回一个新的字符串,原始字符串不会被修改。
丸趣 TV 网 – 提供最优质的资源集合!
正文完