python 保留指定的字符
时间: 2023-11-27 12:04:55 浏览: 86
python保留字有哪些 .pdf
5星 · 资源好评率100%
可以使用字符串的replace()方法来保留指定的字符。
例如,如果要保留所有数字字符,可以使用如下代码:
```python
string = "hello123world456"
new_string = ''.join([char for char in string if char.isdigit()])
print(new_string)
# Output: 123456
```
在这个例子中,我们使用了列表推导式来遍历字符串中的每个字符,并且只保留数字字符。最后,我们将这些数字字符连接起来,得到了新的字符串new_string。
阅读全文