I cant understand what my problem is. Can anybody help please?
lst1=[10,2,23,24,5,65,17,98,19,101]
lst2=[1,12,3,41,5,63,7,8,93,107]
Z=list(filter(lambda r,s : r==2 and s==12 , lst1,lst2))
print(Z)
I expect [2,12] but the output is: TypeError: filter expected 2 arguments, got 3