Python中可以使用str.replace()方法来替换字符串中的指定字符。以下是一个示例:
str.replace()
string = "Hello, World!" new_string = string.replace(",", "") print(new_string) # Output: Hello World!
在上面的示例中,我们使用replace(",", "")来将字符串中的逗号替换为空字符串,从而去掉了指定的字符。
replace(",", "")