Write a program which can filter() to make a list whose elements are even number between 1 and 20 (both included).
Topic: Write a program which can filter() to make a list whose elements are even number between 1 and 20 (both included).
Solution
evenNumbers = filter(lambda x: x%2==0, range(1,21)) print(evenNumbers)
List all Python Programs