python从字符串中删除特定字符
时间: 2023-08-09 15:04:50 浏览: 79
Python字符串中删除特定字符的方法
可以使用字符串的 `replace()` 方法来删除特定字符,例如:
```python
string = "Hello, World!"
char_to_remove = ","
new_string = string.replace(char_to_remove, "")
print(new_string)
```
这将输出字符串 `Hello World!`,其中所有的逗号 `,` 都被删除了。你可以将 `char_to_remove` 赋值为你想要删除的任何字符。如果你想删除多个不同的字符,可以多次调用 `replace()` 方法或使用正则表达式。
阅读全文