python删除字符串子串
时间: 2023-09-02 16:08:37 浏览: 148
删除字符串中的子字符串
5星 · 资源好评率100%
可以使用字符串的replace方法来删除字符串子串,例如:
```
string = "hello world"
substring = "world"
new_string = string.replace(substring, "")
print(new_string)
```
输出结果为:
```
hello
```
另外,如果要删除字符串开头或结尾的子串,可以使用字符串的lstrip、rstrip或strip方法,例如:
```
string = " hello world "
new_string = string.strip()
print(new_string)
```
输出结果为:
```
hello world
```
阅读全文