Answers for "add two lists using lambda"

0

adding two lists using lambda function

listA=['one', 'two' , 'three']
listB=['apple','cherry','watermelon']
list(map(lambda x, y: x+ ' ' +y, listA, listB))
Posted by: Guest on June-09-2020

Code answers related to "add two lists using lambda"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language