python lambda
multiply = lambda x,y: x * y
multiply(21, 2) #42
#_____________
def myfunc(n):
return lambda a : a * n
mydoubler = myfunc(2)
print(mydoubler(11)) #22
python lambda
multiply = lambda x,y: x * y
multiply(21, 2) #42
#_____________
def myfunc(n):
return lambda a : a * n
mydoubler = myfunc(2)
print(mydoubler(11)) #22
lambda python
# Lambda is what is known as an anonymous function. Basically it's like a function but a variable
# This is the "python" way of writing a lambda function
multiply = lambda x,y: x * y
# The x,y are the arguments used for the function and "x * y" is the expression
multiply(10, 10) #100
# Lambda are useful sometimes for a number of python projects.
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us