Python statement using lambda calculus map to map x to y where every element of y is incremented by 1. code example
Example: python3 lambda
>>> sum = lambda x, y : x + y
>>> sum(3,4)
7
>>> sum = lambda x, y : x + y
>>> sum(3,4)
7