python删除字符串中字符
时间: 2023-09-25 20:13:29 浏览: 91
要删除字符串中的字符,可以使用Python的字符串函数replace(),它可以将字符串中的所有指定字符替换为其他字符或删除字符。例如,下面的代码将从字符串中删除所有的字母e:
``` python
string = "Hello, world!"
new_string = string.replace("e", "")
print(new_string)
```
输出结果为:
```
Hllo, world!
```
另外,如果你想删除字符串中的所有空格,可以使用字符串函数replace()将空格替换为一个空字符串,如下所示:
``` python
string = " Hello, world! "
new_string = string.replace(" ", "")
print(new_string)
```
输出结果为:
```
Hello,world!
```
阅读全文