array python temukan lambda

lst = [1,2,3,4]
filter(lambda x: x % 2 == 0, lst)
[x for x in lst if x %2 == 0]
#[2,4]
crêpper