Menambahkan dua daftar menggunakan fungsi lambda

listA=['one', 'two' , 'three']
listB=['apple','cherry','watermelon']
list(map(lambda x, y: x+ ' ' +y, listA, listB))
Energetic Eagle