What does python's return statement actually return?
I want to know how we get the value returned by a function - what the python return statement actually returns.
Considering following piece of code:
def foo():
y = 5
return y
When invoking foo()
, we get the value 5
.
x = foo()
x
binds the integer object 5
.
What does it mean? What does the return statement actually return here? The int
object 5
? Or variable name y
? Or the binding to the object 5
? Or something else?
How do we get the value returned by the return statement?
Solution 1:
x binds the integer object 5.
Yes, x
is a variable holding a reference to the integer object 5, which y
also holds the reference to.
What does the return statement actually return here? The int object 5? Or variable name y? Or the binding to the object 5? Or something else?
To be precise, it is the reference to integer object 5 being returned. As an example, look at this:
In [1]: def foo():
...: y = 5
...: print(id(y))
...: return y
...:
In [2]: x = foo()
4297370816
In [3]: id(x)
Out[3]: 4297370816
How do we get the value returned by the return statement?
By accessing the reference that return
passes back to the caller.