编写程序实现在字符串s中删除字符串c
时间: 2024-05-05 09:17:19 浏览: 45
C语言判断回文字符串代码.rar
5星 · 资源好评率100%
以下是Python的示例代码:
```python
s = "hello world"
c = "llo"
new_s = s.replace(c, "")
print(new_s)
```
输出:
```
he world
```
这里使用了Python的字符串方法`replace()`,它可以将字符串中的某个子串替换成另一个字符串。如果第二个参数为空字符串,就相当于删除了这个子串。
阅读全文