📜  使用 Lambda 的 Python 过滤器列表 - Python 代码示例

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

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

#filter all the odd numbers using list Comprehension
result = [x for x in mylist if x%2!=0]
print('The odd numbers are ',list(result))


#filter all the even numbers using list Comprehension
result = [x for x in mylist if x%2==0]
print('The even numbers are ',list(result))