python定义一个函数,可以将指定列表中的所有的偶数,保存到一个新的列表中返回。
时间: 2024-04-30 12:19:30 浏览: 82
Python中特殊函数集锦
可以定义一个函数,接受一个列表作为参数,然后遍历列表,将其中的偶数保存到一个新的列表中并返回新的列表。代码如下:
```python
def get_even_list(lst):
even_lst = []
for num in lst:
if num % 2 == 0:
even_lst.append(num)
return even_lst
```
使用示例:
```python
>>> lst = [1, 2, 3, 4, 5, 6, 7, 8]
>>> get_even_list(lst)
[2, 4, 6, 8]
```
阅读全文