49578/what-happens-when-you-use-lambda-inside-lambda
Yes you can use lambda inside lambda. Consider the following example:
A=lambda x:(lambda y:x+y) t=A(4) print(t(8))
Output: 12
can you give an example? READ MORE
Hi, The basic difference between these two are _init_ ...READ MORE
Polymorphism is the ability to present the ...READ MORE
A module is a file containing a ...READ MORE
python is general purpose programming language.it very ...READ MORE
The main purpose of anonymous functions come ...READ MORE
Python lambda functions can be used to ...READ MORE
This is done because these functions are ...READ MORE
Join() function is used in threading to ...READ MORE
OR
At least 1 upper-case and 1 lower-case letter
Minimum 8 characters and Maximum 50 characters
Already have an account? Sign in.