Lambda function in python

 #  lambda functoins is also known as anonymous functions 



# normal method to type a function
def mul(ab):
    print(a*b)

# lambda method to type a functios

mul = lambda xyprint(x*y)

mul(34)
# print(mul)

Comments