📅  最后修改于: 2020-09-21 02:22:00             🧑  作者: Mango
在下面的程序中,我们在filter()
内置函数内使用了匿名(lambda) 函数来查找列表中所有可被13整除的数字。
# Take a list of numbers
my_list = [12, 65, 54, 39, 102, 339, 221,]
# use anonymous function to filter
result = list(filter(lambda x: (x % 13 == 0), my_list))
# display the result
print("Numbers divisible by 13 are",result)
输出
Numbers divisible by 13 are [65, 39, 221]