定义一个列表,内容是[1,2,3,4,5,6,7,8,9,10]遍历列表,取出列表内的偶数,并存入一个新的列表对象中。使用while循环和for循环各操作一次
时间: 2024-05-14 08:18:32 浏览: 135
Python-遍历列表-for循环
5星 · 资源好评率100%
使用while循环实现:
```
lst = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
new_lst = []
i = 0
while i < len(lst):
if lst[i] % 2 == 0:
new_lst.append(lst[i])
i += 1
print(new_lst)
```
使用for循环实现:
```
lst = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
new_lst = []
for num in lst:
if num % 2 == 0:
new_lst.append(num)
print(new_lst)
```
阅读全文