在Python中,可以使用字符串的replace()方法来删除指定的字符。
replace()
string = "Hello, World!" char = "o" new_string = string.replace(char, "") print(new_string)
输出结果:Hell, Wrld!
Hell, Wrld!
在上面的例子中,我们使用replace()方法将字符串中的字符o替换为空字符串,从而实现删除字符的效果。
o