up vote 2 down vote favorite
1
share [g+] share [fb]

How to return more than one variable from a function in Python???

link|improve this question

31% accept rate
Duplicate: stackoverflow.com/questions/38508/… – unbeknown Jan 8 '09 at 9:46
In case you haven't noticed; there is text box and button with "Search" on it top right corner of the page. – muhuk Jan 8 '09 at 9:50
Wow - sarcasm much. – seanyboy Jan 8 '09 at 16:39
feedback

3 Answers

You separate the values you want to return by commas:

def get_name():
   # you code
   return first_name, last_name

The commas indicate it's a tuple, so you could wrap your values by parentheses:

return (first_name, last_name)

Then when you call the function you a) save all values to one variable as a tuple, or b) separate your variable names by commas

name = get_name() # this is a tuple
first_name, last_name = get_name()
(first_name, last_name) = get_name() # You can put parentheses, but I find it ugly
link|improve this answer
feedback

Here is also the code to handle the result:

def foo (a):
    x=a
    y=a*2
    return (x,y)

(x,y) = foo(50)
link|improve this answer
This one is even better than from NXC, because it shows how to call it. – furtelwart Jan 8 '09 at 10:02
feedback

Return as a tuple, e.g.

def foo (a):
    x=a
    y=a*2
    return (x,y)
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.