Computer Science, asked by poojapansare, 5 hours ago

Write a Python program to filter a list of integers using Lambda.​

Answers

Answered by mk28816615
2

Explanation:

We can use Lambda function inside the filter() built-in function to find all the numbers divisible by 13 in the list. In Python, anonymous function means that a function is without a name. The filter() function in Python takes in a function and a list as arguments.

Similar questions