python删除字符串中的""
时间: 2023-11-24 17:05:30 浏览: 150
删除字符串中的字符Python.md
可以使用字符串的replace()方法来删除字符串中的"",将其替换为空字符串即可。例如:
```python
s = 'hello "world"'
s = s.replace('"', '')
print(s) # 输出:hello world
```
在上面的代码中,使用replace()方法将字符串中的双引号""替换为空字符串''。最终输出结果为'hello world'。
阅读全文