LAMBDA


Python - Lambda


A lambda function is a small anonymous function.

A lambda function can take any number of arguments, but can only have one expression.


Syntax
lambda arguments : expression

Example :

A lambda function that adds 10 to the number passed in as an argument, and print the result.

x = lambda a : a + 10
print(x(5))

====o/p====
15
Lambda functions can take any number of arguments.

x = lambda a, b : a * b
print(x(6, 6))

====o/p====
36
A lambda function that sums argument a, b, and c and print the result:

x = lambda a, b, c : a + b + c
print(x(2, 6, 9))

====o/p=====
17


Why We Use Lambda Functions?


The power of lambda is better shown when you use them as an anonymous function inside another function.

Assume you have a function definition that takes one argument, and that argument will be multiplied with an unknown number:


def myfunc(n):
  return lambda a : a * n

Use that function definition to make a function that always 'doubles' the number you send in:

def myfunc(n):
  return lambda a : a * n

mydoubler = myfunc(2)

print(mydoubler(11))

=====o/p====
22

Or, use the same function definition to make a function that always 'triples' the number you send in:

def myfunc(n):
  return lambda a : a * n

mytripler = myfunc(3)

print(mytripler(22))

====o/p====
66

Or, use the same function definition to make both functions, in the same program :


def myfunc(n):
  return lambda a : a * n

mydoubler = myfunc(2)
mytripler = myfunc(3)

print(mydoubler(11))
print(mytripler(11))

=====o/p=====
22
33

Use lambda functions when an anonymous function is required for a short period of time.



RegEx SETS

Python - RegEx SETS

posted on 2019-11-12 23:06:24 - Python Tutorials


RegEx_Functions

Python - RegEx_Functions

posted on 2019-11-09 06:07:29 - Python Tutorials


RegEx_Sets

Python - RegEx_Sets

posted on 2019-11-09 05:30:54 - Python Tutorials


Prompt Examples

ChatGPT Prompt Examples

posted on 2023-06-21 22:37:19 - ChatGPT Tutorials


Use Cases

Chat GPT Key Use Cases

posted on 2023-06-21 21:03:17 - ChatGPT Tutorials


Prompt Frameworks

Prompt Frameworks

posted on 2023-06-21 19:33:06 - ChatGPT Tutorials