write a python program to filter a list of integers using lambda. code example
Example: find elements array lamda python
result = [filter(lambda x: (x % 2 == 0), [1, 2, 3])]
result = [filter(lambda x: (x % 2 == 0), [1, 2, 3])]