Python return statement (original) (raw)

Last Updated : 20 Dec, 2025

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.

Python `

def square(n): return n * n

res = square(4) print(res)

`

**Explanation:

Syntax

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.

Returning Multiple Values

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.

Python `

def get_vals(): x = 10 y = 20 return x, y

a, b = get_vals() print(a) print(b)

`

**Explanation:

Returning a List from a Function

A function can also return collections like lists, which is useful when you want to return multiple related values together.

Python `

def calc(n): return [n * n, n * n * n]

print(calc(3))

`

**Explanation:

Function Returning Another Function

In Python, functions are first-class citizens, meaning you can return a function from another function. This is useful for creating higher-order functions.

Python `

def outer(msg): def inner(): return msg return inner

f = outer("Hello") print(f())

`

**Explanation: