共计 209 个字符,预计需要花费 1 分钟才能阅读完成。
Python 中可以使用 str.replace()
方法来替换字符串中的指定字符。以下是一个示例:
string = "Hello, World!"
new_string = string.replace(",", "")
print(new_string) # Output: Hello World!
在上面的示例中,我们使用 replace(",", "")
来将字符串中的逗号替换为空字符串,从而去掉了指定的字符。
丸趣 TV 网 – 提供最优质的资源集合!
正文完