list(map(lambda x,y : x*y , listA, listB)) : How does python know that the comma in the lambda function does not indicate another parameter of map fun
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.