在字符串中删除指定字符
时间: 2023-09-04 13:12:52 浏览: 83
删除字符串中指定的字符
可以使用 Python 中的 replace() 函数来删除指定字符,例如:
```
string = "hello world"
char_to_remove = "l"
new_string = string.replace(char_to_remove, "")
print(new_string) # 输出结果为 "heo word"
```
这里的 char_to_remove 是要删除的字符,可以是单个字符,也可以是字符串。replace() 函数会返回一个新的字符串,其中指定字符被替换为空字符串。
阅读全文