共计 234 个字符,预计需要花费 1 分钟才能阅读完成。
在 Python 中,你可以使用 replace()
方法来替换字符串中的字母。replace()
方法接受两个参数,第一个参数是要被替换的字母,第二个参数是替换后的字母。下面是一个例子:
string = "Hello World"
new_string = string.replace("o", "e")
print(new_string)
输出结果为:
Helle Werld
在上面的例子中,我们用 replace()
方法将字符串中的所有字母 "o" 替换为 "e"。
丸趣 TV 网 – 提供最优质的资源集合!
正文完