+ 1
I can't understand about lambda
3 Answers
+ 1
def hi(x):
c=x**5
return c
-------------''is equivalent to"--------->>
hi=lambda x : x**5
+ 1
Lambda describes a function
0
here lambda x wokrs as
f(x) = x**5
and returning f(x) with whatever the value of x you passed as argument