How can I print the inside of a lambda function?
For example, from the following lambda expression:
lambda a, b: a / b
I want to receive:
a / b
Or from this expression:
lambda a, b: math.pow(a, b)
To receive:
pow(a, b)
How can I print the inside of a lambda function?
For example, from the following lambda expression:
lambda a, b: a / b
I want to receive:
a / b
Or from this expression:
lambda a, b: math.pow(a, b)
To receive:
pow(a, b)