python删除字符串子串
时间: 2023-09-02 13:08:37 浏览: 146
python实现在字符串中查找子字符串的方法
可以使用字符串的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
```
阅读全文