“lambda” Kod odpowiedzi

Co Lambda reprezentuje w matematyce

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

Odpowiedzi podobne do “lambda”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu