阅读量:0
在Python中删除字符串中指定的字符,可以使用replace()
方法来实现。replace()
方法接受两个参数,第一个参数是要被替换的字符,第二个参数是替换后的字符。下面是一个例子:
string = "Hello, World!" new_string = string.replace(",", "") print(new_string)
输出:
Hello World!
在上面的例子中,我们将字符串中的逗号,
替换为空字符串""
,从而删除了字符串中的逗号。