如何去掉字符串中特定的多个字符
时间: 2023-05-19 19:06:16 浏览: 224
您可以使用 Python 中的 replace() 函数来去掉字符串中特定的多个字符。例如,如果您想要去掉字符串中的所有逗号和句号,可以使用以下代码:
```
string = "Hello, world. This is a test string."
new_string = string.replace(",", "").replace(".", "")
print(new_string)
```
输出结果为:
```
Hello world This is a test string
```
这里我们使用了 replace() 函数两次,第一次将逗号替换为空字符串,第二次将句号替换为空字符串。这样就可以去掉字符串中的特定字符了。
阅读全文