📜  使用列表理解过滤 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:22.898000             🧑  作者: Mango

代码示例1
# creating a list in Python
mylist= [3,5,1,5,7,8,2,6]

#filter all the odd numbers using lambda
result = filter(lambda x: x % 2 != 0, mylist)
print('The odd numbers are ',list(result))


#filter all the even numbers using lambda
result = filter(lambda x: x % 2 == 0, mylist)
print('The even numbers are ',list(result))