Functions
Defining Functions
A function is a block of reusable code that performs a specific task.
In Python, you define a function using the def
keyword, followed by the function name and parentheses enclosing any parameters.
The function body is indented.
Syntax:
Example:
Calling the Function:
Return Statement
The return
statement is used to send a result back from the function to the caller.
After the return
statement is executed, the function exits and the control is returned to the place where the function was called.
Syntax:
Example:
Calling the Function:
Lambda Functions
A lambda
function is a small, anonymous function defined using the lambda
keyword.
It can take any number of arguments but can only have one expression.
The expression is evaluated and returned when the lambda
function is called.
Syntax:
Example:
Calling the lambda
:
Default Arguments
You can assign default values to parameters when defining a function.
These default values will be used if no argument is passed for those parameters when the function is called.
Example:
Calling the Function:
Keyword Arguments
You can also specify the values of arguments by their parameter names when calling a function.
Example:
Calling the Function:
Output:
Arbitrary Arguments
*args
allows you to pass a variable number of non-keyword arguments (positional arguments) to a function.
**kwargs
allows you to pass a variable number of keyword arguments to a function.
Example:
Calling the Function:
Output:
Docstrings
A docstring is a special type of string that is used to document a function.
It is placed immediately after the function definition and can be accessed using the help()
function or .__doc__.
Example:
Calling the Function:
Output:
Returning Multiple Values
A function in Python can return multiple values.
These values are returned as a tuple
, which is implicitly created when multiple values are returned. You can then unpack these values into separate variables when calling the function.
Example:
Calling the Function:
Output: