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

时间:2012-03-17 19:18:53

标签: python list function return return-value

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

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时,它会返回tuple,这不是我想要的。

8 个答案:

答案 0 :(得分:376)

您无法返回两个值,但您可以返回tuplelist并在通话后将其解压缩:

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

my_i, my_card = select_choice()

在线return i, card i, card表示创建一个元组。您也可以使用return (i, card)之类的括号,但是元组是用逗号创建的,所以parens不是必需的。但是您可以使用parens来使代码更具可读性,或者将元组拆分为多行。这同样适用于行my_i, my_card = select_choice()

如果要返回两个以上的值,请考虑使用named tuple。它将允许函数的调用者按名称访问返回值的字段,这更具可读性。您仍然可以通过索引访问元组的项目。例如,在Schema.loads方法中,Marshmallow框架返回UnmarshalResult,即namedtuple。所以你可以这样做:

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

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

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

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)

答案 1 :(得分:25)

  

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

您希望它在主叫端看起来像什么?你不能写a = select_choice(); b = select_choice(),因为这会调用该函数两次。

“变量”中不返回值;这不是Python的工作方式。函数返回值(对象)。变量只是给定上下文中值的名称。当您调用函数并在某处分配返回值时,您正在执行的操作是在调用上下文中为接收的值指定名称。该函数不会为您赋值“变量”,分配确实如此(更不用说变量不是值的“存储”,而是一个名称)。

  

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

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

  

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

所以只需从tuple中获取值。

最简单的方法是解压缩:

a, b = select_choice()

答案 2 :(得分:16)

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

i, card = select_choice()

答案 3 :(得分:8)

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

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

现在你可以用你的元组做你喜欢的一切。

答案 4 :(得分:2)

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

答案 5 :(得分:2)

您可以尝试

arena https://github.com/finestructure/Gala
?  resolving package dependencies
?  libraries found: Gala
✅  created project in folder 'SPM-Playground'

答案 6 :(得分:1)

您也可以使用列表返回多个值。检查下面的代码

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

答案 7 :(得分:1)

这是另一种选择。如果你以列表的形式返回,那么获取值很简单。

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

values = select_choice()

print values[0]
print values[1]