如何从Python中的函数返回两个值?


194

我想在两个单独的变量中从函数返回两个值。例如:

def select_choice():
    loop = 1
    row = 0
    while loop == 1:
        print('''Choose from the following options?:
                 1. Row 1
                 2. Row 2
                 3. Row 3''')

        row = int(input("Which row would you like to move the card from?: "))
        if row == 1:
            i = 2
            card = list_a[-1]
        elif row == 2:
            i = 1
            card = list_b[-1]
        elif row == 3:
            i = 0
            card = list_c[-1]
        return i
        return card

我希望能够分别使用这些值。当我尝试使用时return i, card,它返回a tuple,这不是我想要的。


请提供一个调用此预期函数并使用其返回值的示例,以使您清楚为什么不想要元组。
Bereal 2012年

2
while循环的意义是什么?
Sven Marnach 2012年

else: continue返回报表前应该有一个
机器向往2012年


是的,我也注意到这是stackoverflow.com/questions/38508/…
lpapp 2014年

Answers:


398

您不能返回两个值,但可以返回a tuple或a list并在调用后解压缩它:

def select_choice():
    ...
    return i, card  # or [i, card]

my_i, my_card = select_choice()

在线return i, card i, card意味着创建一个元组。您也可以使用括号,例如return (i, card),但是元组是用逗号创建的,因此括号不是必需的。但是,您可以使用parens来提高代码的可读性或将元组分成多行。这同样适用于line my_i, my_card = select_choice()

如果要返回两个以上的值,请考虑使用命名的tuple。它将允许函数的调用者按名称访问返回值的字段,这样更易​​于阅读。您仍然可以按索引访问元组的项目。例如,在Schema.loadsMarshmallow框架方法中,返回的UnmarshalResult是a namedtuple。因此,您可以执行以下操作:

data, errors = MySchema.loads(request.json())
if errors:
    ...

要么

result = MySchema.loads(request.json())
if result.errors:
    ...
else:
    # use `result.data`

在其他情况下,您可以dict从函数中返回a :

def select_choice():
    ...
    return {'i': i, 'card': card, 'other_field': other_field, ...}

但是您可能要考虑返回一个实用程序类的实例,该实例包装您的数据:

class ChoiceData():
    def __init__(self, i, card, other_field, ...):
        # you can put here some validation logic
        self.i = i
        self.card = card
        self.other_field = other_field
        ...

def select_choice():
    ...
    return ChoiceData(i, card, other_field, ...)

choice_data = select_choice()
print(choice_data.i, choice_data.card)

26

我想在两个单独的变量中从函数返回两个值。

您希望它在呼叫端看起来像什么?您无法编写,a = select_choice(); b = select_choice()因为那样会调用该函数两次。

值不“在变量中”返回;那不是Python的工作方式。函数返回值(对象)。变量只是给定上下文中值的名称。当您调用函数并在某处分配返回值时,您正在做的就是在调用上下文中为接收到的值命名。该函数不会为您将值“放入变量”中,赋值却会这样做(不必担心变量不是该值的“存储”,而是一个名称)。

当我尝试使用时return i, card,它返回a tuple,这不是我想要的。

实际上,这正是您想要的。您所要做的就是tuple再次分开。

而且我希望能够单独使用这些值。

因此,只需从中获取价值即可tuple

最简单的方法是打开包装:

a, b = select_choice()

1
感谢您解释“为什么会这样”。最佳答案imo。
Edward Coelho

17

我认为您想要的是元组。如果使用return (i, card),则可以通过以下方式获得这两个结果:

i, card = select_choice()

8
def test():
    ....
    return r1, r2, r3, ....

>> ret_val = test()
>> print ret_val
(r1, r2, r3, ....)

现在,您可以使用元组完成所有您喜欢的事情。


5
def test():
    r1 = 1
    r2 = 2
    r3 = 3
    return r1, r2, r3

x,y,z = test()
print x
print y
print z


> test.py 
1
2
3

2

这是另一种选择,如果您以列表形式返回,则很容易获得值。

def select_choice():
    ...
    return [i, card]

values = select_choice()

print values[0]
print values[1]

2

你可以试试这个

class select_choice():
    return x, y

a, b = test()

1

您还可以使用list返回多个值。检查下面的代码

def newFn():    #your function
  result = []    #defining blank list which is to be return
  r1 = 'return1'    #first value
  r2 = 'return2'    #second value
  result.append(r1)    #adding first value in list
  result.append(r2)    #adding second value in list
  return result    #returning your list

ret_val1 = newFn()[1]    #you can get any desired result from it
print ret_val1    #print/manipulate your your result
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.