I have this very simple Python function, but there is one part I am confused about. The function is called bigger and it takes two numbers as inputs and outputs the bigger number. (I could only use if statements, no elses)
Here's the code:
def bigger(x, y):
if x > y:
return x
return y
I would think that this code would return y
if y
is bigger (which it does), but it would return x
and y
if x
is bigger (it only returns x
). Why does it only return one output? Can Python functions only have one output?
The
return
statement not only returns a value, but also terminates the current function and returns control to the calling function. So, this function will only return a single value. In my opinion it would be slightly more clear to write this:but the result would not differ.
Python functions can only return one value. It would be possible to return both x and y as a tuple, but the way this function is set up, it will return a single value and then exit the function.
Try this
This way it will return x and y if x is bigger, but y if y is bigger. I assume this was your question?
The reason for this is that return gives back that 1 value, then exits the function. So it would leave the function bigger(x,y) as soon as it hits that return. If you want to return both x and y, you can do so with a tuple, list, whatever you want, as I did with a tuple.
In a Python function, when a
return
statement is encountered, execution of that function is terminated. Execution context then goes back to the context that called the function.So, even though you see two
return
statements, if that first one is encountered (as a result of x being bigger than y), nothing else in the function runs.https://docs.python.org/2/reference/simple_stmts.html#return
Python functions only returns one value.
You can try,