list(map(lambda x,y : x*y , listA, listB))
I want to know how Python understands that the comma present in lambda x,y belongs to the lambda function and it is not the end of the first parameter of the map function.
New contributor
Nikhil Kumar AV is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
1