python删除字符串中指定字符
时间: 2023-09-06 12:07:10 浏览: 249
Python 去除字符串中指定字符串
5星 · 资源好评率100%
可以使用字符串的replace()方法来删除指定字符,例如:
```python
s = "hello, world!"
s = s.replace(",", "") # 删除逗号
print(s) # 输出: hello world!
```
另外,也可以使用join()方法和列表推导式来删除指定字符,例如:
```python
s = "hello, world!"
s = "".join([c for c in s if c != ","]) # 删除逗号
print(s) # 输出: hello world!
```
阅读全文