是否有可能像回归一样产生两件事?

问题描述 投票:5回答:2
def foo(choice):
    for i in limit:
        d1 = doSomeCalc()
        d2 = doSomeOtherCalc()
        if choice == "stuff":
            yield {
                d1 : "value"
            }
        else:
            yield {
                d2 : "Othervalue"
            }

我有一个函数,yields两种类型的字典取决于用户的选择

def bar():
    for i in limit:
        d1 = doSomeCalc()
        d2 = doSomeOtherCalc()
        return {d1 : "value"}, {d2 : "Othervalue"}

a,b = bar() // when function returns two dictionaries

就像return一样,我可以使用yield一次给两个不同的词典吗?我如何获得每个价值?

我现在不想将if-else保留在我的功能中。

python yield
2个回答
8
投票

您一次只能生成一个值。迭代生成器将依次产生每个值。

def foo():
  yield 1
  yield 2

for i in foo():
  print i

和往常一样,价值可以是一个元组。

def foo():
  yield 1, 2

for i in foo():
  print i

0
投票

另一种方法是产生类似字典的数据结构,如下所示:

def create_acct_and_tbl():
    yield {'acct_id': 4, 'tbl_name': 'new_table_name'}


def test_acct_can_access():
    rslt = create_acct_and_tbl
    print(str(rslt['acct_id']), rslt['tbl_name'])
© www.soinside.com 2019 - 2024. All rights reserved.