用 Python 程序查找可被另一个数整除的数

2022-05-03 00:00:00 查找 个数 整除

在这个程序中,您将学习如何找到可被另一个数整除的数字并显示它。
在下面的程序中,我们使用 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]

相关文章