Difference between a normal function and a lambda function : Lambda function : Function PYTHON examples


PYTHON examples » Function » Lambda function »

 

Difference between a normal function and a lambda function


Difference between a normal function and a lambda function



def f (x)return x**2
 
print f(8)

g = lambda x: x**2
 
print g(8)



           
       



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .


PYTHON examples

 Navioo Function
» Lambda function