“Lambda” Réponses codées

Que représente Lambda en mathématiques

Math symbols
Perfect Pig

Lambda

'''
Lambda functions are small functions that are very useful.
They take in as many attributes but only have 1 expression and you only
need 1 line to create them.
'''

# Writing a normal function
def add(a, b):
	return a + b
    
# Writing a lambda function
add = lambda a, b: a + b

# You can use lambda functions as anonymous functions inside functions
def multiplier(n):
  return lambda a: a * n

my_doubler = multiplier(2)

print(my_doubler(4)) # 8
print(my_doupler(5)) # 10
Ninja Penguin

Réponses similaires à “Lambda”

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code