python删除字符串中字符
时间: 2023-09-03 12:13:08 浏览: 88
你可以使用Python中的字符串方法或正则表达式来删除字符串中的字符。例如,使用字符串方法可以使用replace函数删除单个字符或使用translate函数删除多个字符。以下是几个例子:
1. 使用replace函数删除单个字符:
```
string = "hello world"
new_string = string.replace("l", "")
print(new_string) # Output: "heo word"
```
2. 使用translate函数删除多个字符:
```
string = "hello world"
new_string = string.translate(str.maketrans("", "", "l"))
print(new_string) # Output: "heo word"
```
3. 使用正则表达式删除字符:
```
import re
string = "hello world"
new_string = re.sub("l", "", string)
print(new_string) # Output: "heo word"
```
以上是几个常见的删除字符串中字符的方法,具体方法取决于你的需求。
阅读全文