Answers for "what is the syntax for the lambda function in python"

28

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
Posted by: Guest on May-09-2020
0

programação funcional python - lambda

transformar = lambda x, y: x**y
transformar(3, 4) #isto retorna 81
Posted by: Guest on December-27-2021

Code answers related to "what is the syntax for the lambda function in python"

Python Answers by Framework

Browse Popular Code Answers by Language