0
hay anyone can tell me.... what is "lembda" statment in pyton....
phyton3
2 Answers
+ 4
Hi Usama Rahman!
If you are talking about lambdas, you can read about them here:
https://www.sololearn.com/learn/JUMP_LINK__&&__Python__&&__JUMP_LINK/2460/?ref=app
If you have any specific questions regarding the lesson, let us know.
+ 1
Lambdas are designed to be "single use functions". They are built in to Python and as a result, they are reserved words. If a function only needs to be used once, create a lambda. A word of advice... please do not turn everything into a Lambda.