For example, map(lambda x,y : x*y :, lst1, lst2) Here, lambda function has two arguments ‘x’ and ‘y’ . Hence, ‘x’ represents ‘lst1’ and ‘y’ represents ‘lst2’ . Since, lambda is showing ‘x*y’ , the respective elements from lst1 and lst2 and product is returned. Now, we will write the said program using lambda function as, lst1 = [1, 2, 3, 4, 5] lst2 = [10, 20, 30, 40, 50] lst3 = list(map(lambda x,y : x*y, lst1, lst2)) print (lst3) [10, 40, 90, 160, 250] Using Lambdas with map() Function