使用lambda函数和filter函数,为字符串列表 ["abcde", "12345", "python", "xmu", "hello"]筛选出长度为5的字符串
时间: 2023-11-13 10:03:45 浏览: 95
在Python中使用filter去除列表中值为假及空字符串的例子
使用lambda函数和filter函数,可以筛选出长度为5的字符串。具体代码如下:
```python
str_list = ["abcde", "12345", "python", "xmu", "hello"]
result = filter(lambda x: len(x) == 5, str_list)
for str in result:
print(str)
```
输出结果为:
```
abcde
12345
```
阅读全文