![]() |
VOOZH | about |
The return statement is used inside a function to send a value back to the place where the function was called. Once return is executed, the function stops running, and any code written after it is ignored. If no value is returned, Python automatically returns None.
This example shows a function that returns a value.
16
Explanation:
def function_name(parameters):
# function body
return value
When the return statement is executed, the function immediately stops running and sends the specified value back to the caller. If no value is mentioned after return, Python automatically returns None.
Note: The return statement can only be used inside a function. Using it outside a function will result in an error.
In Python, a function can return more than one value at a time. These values are automatically grouped into a tuple and can be unpacked into separate variables.
10 20
Explanation:
A function can also return collections like lists, which is useful when you want to return multiple related values together.
[9, 27]
Explanation:
In Python, functions are first-class citizens, meaning you can return a function from another function. This is useful for creating higher-order functions.
Hello
Explanation: