A lambda function can take any number of arguments and have two expression. code example
Example: lambda two arguments
d = {1: 2, 3: 4}
list(map(lambda x, y: x + y, *d.items()))
d = {1: 2, 3: 4}
list(map(lambda x, y: x + y, *d.items()))