用filter函数编写一个可以过滤列表中偶数的程序。列表是:[1,2,3,4,5,6,7,8,9,10]。
Posted top啦它
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用filter函数编写一个可以过滤列表中偶数的程序。列表是:[1,2,3,4,5,6,7,8,9,10]。相关的知识,希望对你有一定的参考价值。
用filter函数编写一个可以过滤列表中偶数的程序。列表是:[1,2,3,4,5,6,7,8,9,10]。
list_1 = [1,2,3,4,5,6,7,8,9,10]
def panduan(numble):
return numble&1
print(list(filter(panduan,list_1)))
以上是关于用filter函数编写一个可以过滤列表中偶数的程序。列表是:[1,2,3,4,5,6,7,8,9,10]。的主要内容,如果未能解决你的问题,请参考以下文章