Python字符串去除特定字符:使用replace()方法
使用 Python 的 replace() 方法可以轻松地从字符串中去除特定字符。例如,如果您想从字符串中去除逗号,可以使用以下代码:
string = 'Hello, World!'
new_string = string.replace(',', '')
print(new_string)
输出:
Hello World!
在这个例子中,我们使用 replace() 方法将逗号替换为空字符串,从而去除了字符串中的逗号。您可以将逗号替换为任何您想要的字符或字符串。
原文地址: https://www.cveoy.top/t/topic/mUUw 著作权归作者所有。请勿转载和采集!