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